@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
17 lines (16 loc) • 432 B
TypeScript
/** @internal */
export interface IFoldersToCountData {
folders: IFolderToCount[];
}
/** @internal */
export interface IFolderToCount {
id: string;
/** Control or someone, that requested the counter */
sourceId: string;
forceVirtualFolderSearch?: boolean;
refreshTimeout: number;
}
/** @internal */
export interface IFoldersToCountDataEx extends IFolderToCount {
preventAwakeOrCreateSession?: boolean;
}