1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-01-10 04:07:35 +02:00
pigallery2/backend/model/interfaces/IIndexingManager.ts
2017-07-25 21:09:37 +02:00

12 lines
249 B
TypeScript

import {IndexingProgressDTO} from "../../../common/entities/settings/IndexingProgressDTO";
export interface IIndexingManager {
startIndexing(): void;
getProgress(): IndexingProgressDTO;
cancelIndexing(): void;
reset(): Promise<void> ;
}