UNPKG

788 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 lastModifiedTime?: Date;
15 lastModifiedBy?: string;
16 isNew: boolean;
17 status: string;
18 documentType?: Enums.DocumentTypes;
19 lastModifiedByAccountName?: string;
20 }
21 interface IListIdentifier {
22 id?: string;
23 title: string;
24 listUrl: string;
25 webUrl: string;
26 rootFolderUrl?: string;
27 }
28}