export interface FileItem { readonly id: string; readonly name: string; readonly description?: string; readonly downloadUrl?: string; readonly created: Date; readonly modified: Date; readonly owner: string; readonly parentReference?: string; readonly size?: number; readonly childCount?: number; readonly mimeType?: string; readonly webUrl?: string; }