@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
47 lines (46 loc) • 1.19 kB
TypeScript
import { FolderTypeItem } from "@docsvision/webclient/Platform/FolderTypeItemsImpl";
export declare const FOLDER_VIEW_DIGEST_VALUE = "03000000-0000-0000-0000-000000000000";
export declare enum FolderManagementOperationType {
Create = 0,
Edit = 1,
View = 2,
Delete = 3,
Security = 4
}
export declare type FolderManagementDialogData = {
name: string;
typeId: string;
viewId: string;
highlightingUnread: boolean;
canEditFolder: boolean;
canCreateSubfolder: boolean;
};
export declare type FolderManagementDialogDataInfo = {
name: string;
viewInfo: {
name: string;
viewId: string;
isDefaultFolderView: boolean;
};
typeInfo: FolderTypeItem;
highlightingUnread: boolean;
canEditFolder: boolean;
canCreateSubfolder: boolean;
};
export declare const FolderManagementControlName: {
name: string;
type: string;
view: string;
highlightingUnread: string;
security: string;
};
export declare const FolderManagementDialogLayoutName: {
0: string;
1: string;
2: string;
};
export declare const FolderManagementDialogHeader: {
0: string;
1: string;
2: string;
};