import { GuidValue } from "@omnia/fx/models"; export interface RollupDocument { sqlId: GuidValue; fileUrl: string; fileInternalUrl?: string; fileExtension: string; siteTitle: string; siteUrl: string; properties: { [key: string]: any; }; lastModifiedById: string; uniqueId: GuidValue; openFileUrl: string; isNew: boolean; openInNewTab?: boolean; unsearchable?: boolean; isLocalDocument?: boolean; }