export default interface IFileState {
    name: string;
    size: number;
    modified?: Date;
}
