src/editorConfig.ts
Properties |
document |
document:
|
Type : literal type
|
Defined in src/editorConfig.ts:3
|
documentType |
documentType:
|
Type : string
|
Defined in src/editorConfig.ts:2
|
editorConfig |
editorConfig:
|
Type : literal type
|
Defined in src/editorConfig.ts:16
|
events |
events:
|
Type : literal type
|
Defined in src/editorConfig.ts:31
|
export class EditorConfig {
documentType: string;
document: {
fileType: string;
key: string;
title: string;
url: string;
permissions: {
comment: boolean;
download: boolean;
edit: boolean;
print: boolean;
review: boolean;
};
};
editorConfig: {
callbackUrl: string;
lang: string;
mode: string;
customization: {
chat: boolean;
comments: boolean;
compactToolbar: boolean;
feedback: boolean;
forcesave: boolean;
goback: boolean;
showReviewChanges: boolean;
zoom: number;
};
};
events: {
onDocumentStateChange: any;
};
}