mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
12 lines
428 B
TypeScript
12 lines
428 B
TypeScript
import {DirectoryDTO} from '../../../common/entities/DirectoryDTO';
|
|
import {IGalleryManager} from '../interfaces/IGalleryManager';
|
|
|
|
export interface ISQLGalleryManager extends IGalleryManager {
|
|
listDirectory(relativeDirectoryName: string,
|
|
knownLastModified?: number,
|
|
knownLastScanned?: number): Promise<DirectoryDTO>;
|
|
|
|
indexDirectory(relativeDirectoryName: string): Promise<DirectoryDTO>;
|
|
|
|
}
|