mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-01-10 04:07:35 +02:00
12 lines
249 B
TypeScript
12 lines
249 B
TypeScript
import {IndexingProgressDTO} from "../../../common/entities/settings/IndexingProgressDTO";
|
|
|
|
export interface IIndexingManager {
|
|
startIndexing(): void;
|
|
|
|
getProgress(): IndexingProgressDTO;
|
|
|
|
cancelIndexing(): void;
|
|
|
|
reset(): Promise<void> ;
|
|
}
|