UNPKG

846 BTypeScriptView Raw
1import { Enums } from '../extensibility';
2export declare module DocumentIdentifier {
3 interface IDocumentIdentifier {
4 id: string;
5 title: string;
6 fileName: string;
7 fileExtension: string;
8 documentUrl: string;
9 serverRelativeUrl: string;
10 parentUrl: string;
11 listUrl: string;
12 webUrl: string;
13 webTitle: string;
14 webLogo?: string;
15 webTemplate?: string;
16 lastModifiedTime?: Date;
17 lastModifiedBy?: string;
18 isNew: boolean;
19 status: string;
20 documentType?: Enums.DocumentTypes;
21 lastModifiedByAccountName?: string;
22 }
23 interface IListIdentifier {
24 id?: string;
25 title: string;
26 listUrl: string;
27 webUrl: string;
28 rootFolderUrl?: string;
29 }
30}