export interface FileSystemObject {
  fullPath: string;
  lastModified?: number;
  name: string;
  size?: number;
}
