interface DirectoryFile {
    attributes: {
        created_at: string;
        mime: string;
        modified_at: string;
        name: string;
        size: number;
        symlink: boolean;
        type: "file" | "directory";
    };
    object: "file";
}

Properties

Properties

attributes: {
    created_at: string;
    mime: string;
    modified_at: string;
    name: string;
    size: number;
    symlink: boolean;
    type: "file" | "directory";
}

Type declaration

  • created_at: string
  • mime: string
  • modified_at: string
  • name: string
  • size: number
  • symlink: boolean
  • type: "file" | "directory"
object: "file"

Generated using TypeDoc