export type StorageItemDto = { /** * The path that the file is located in */ name: string; /** * The size of the item in bytes */ size: number; /** * The id of the storage item */ id: string; /** * Whether or not this is a directory */ isDir: boolean; /** * Whether or not this is a directory */ createdAt: string; };