12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import {IndexingProgressDTO} from '../../../common/entities/settings/IndexingProgressDTO';
|
|
|
|
export interface IIndexingTaskManager {
|
|
startIndexing(createThumbnails?: boolean): void;
|
|
|
|
getProgress(): IndexingProgressDTO;
|
|
|
|
cancelIndexing(): void;
|
|
|
|
reset(): Promise<void>;
|
|
}
|