mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-11 02:56:39 -04:00
3 lines
319 B
TypeScript
3 lines
319 B
TypeScript
import type { File } from "./File";
|
|
|
|
export interface FilePath { id: number, is_dir: boolean, location_id: number, materialized_path: string, name: string, extension: string | null, file_id: number | null, parent_id: number | null, date_created: string, date_modified: string, date_indexed: string, file: File | null, } |