mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-13 03:56:33 -04:00
3 lines
424 B
TypeScript
3 lines
424 B
TypeScript
import type { Encryption } from "./Encryption";
|
|
|
|
export interface File { id: number, meta_checksum: string, 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, storage_device_id: number | null, capture_device_id: number | null, parent_id: number | null, } |