Files
spacedrive/packages/core/bindings/File.ts
2022-01-17 12:38:05 -08:00

3 lines
504 B
TypeScript

import type { Encryption } from "./Encryption";
export interface File { id: number, meta_integrity_hash: string, sampled_byte_integrity_hash: string | null, byte_integrity_hash: string | null, uri: string, is_dir: boolean, name: string, extension: string, size_in_bytes: string, library_id: number, date_created: string, date_modified: string, date_indexed: string, encryption: Encryption, ipfs_id: string | null, location_id: number | null, capture_device_id: number | null, parent_id: number | null, }