import { IFile } from "./file"; export interface IFileSnapshot { get created(): string; get creatorId(): number; get reason(): string; get files(): IFile[]; get hasAnnotations(): boolean; }