update interface

This commit is contained in:
2024-09-01 09:33:29 +00:00
parent a0ee74d672
commit 280f221141

View File

@@ -1,10 +1,15 @@
export interface File {
object: string; // "file_object" or "list" in the provided JSON
attributes: {
name: string;
modified_at: string;
mode: string; // e.g., "-rw-r--r--"
mode_bits: string; // e.g., "644"
size: number;
is_file: boolean;
directory: string;
is_symlink: boolean;
mimetype: string; // e.g., "application/json"
created_at: string; // e.g., "2024-08-29T22:31:59+00:00"
modified_at: string; // e.g., "2024-08-29T22:31:59+00:00"
};
}