import {DirectoryDTO} from '../../../common/entities/DirectoryDTO'; import {IGalleryManager} from '../interfaces/IGalleryManager'; export interface ISQLGalleryManager extends IGalleryManager { listDirectory(relativeDirectoryName: string, knownLastModified?: number, knownLastScanned?: number): Promise; indexDirectory(relativeDirectoryName: string): Promise; countDirectories(): Promise; countPhotos(): Promise; countVideos(): Promise; countMediaSize(): Promise; }