mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
cd06bc00ec
project and config refactoring Warning: braking changes in the config
20 lines
632 B
TypeScript
20 lines
632 B
TypeScript
import {DirectoryDTO} from '../../../../common/entities/DirectoryDTO';
|
|
import {IGalleryManager} from '../interfaces/IGalleryManager';
|
|
import {DuplicatesDTO} from '../../../../common/entities/DuplicatesDTO';
|
|
|
|
export interface ISQLGalleryManager extends IGalleryManager {
|
|
listDirectory(relativeDirectoryName: string,
|
|
knownLastModified?: number,
|
|
knownLastScanned?: number): Promise<DirectoryDTO>;
|
|
|
|
countDirectories(): Promise<number>;
|
|
|
|
countPhotos(): Promise<number>;
|
|
|
|
countVideos(): Promise<number>;
|
|
|
|
countMediaSize(): Promise<number>;
|
|
|
|
getPossibleDuplicates(): Promise<DuplicatesDTO[]>;
|
|
}
|