mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
2ea0ea42e3
upgrading packages
12 lines
419 B
TypeScript
12 lines
419 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): Promise<DirectoryDTO>;
|
|
|
|
}
|