mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-10 10:36:25 -04:00
* Temp fix for build.rs * Note implementation * Notes work now, need to iron out some things. * Finish file notes. Co-authored-by: maxichrome <maxichrome@users.noreply.github.com> * Remove lodash debounce * Fix pnpm locl Co-authored-by: maxichrome <maxichrome@users.noreply.github.com>
5 lines
594 B
TypeScript
5 lines
594 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { FileKind } from "./FileKind";
|
|
import type { FilePath } from "./FilePath";
|
|
|
|
export interface File { id: number, cas_id: string, integrity_checksum: string | null, size_in_bytes: string, kind: FileKind, hidden: boolean, favorite: boolean, important: boolean, has_thumbnail: boolean, has_thumbstrip: boolean, has_video_preview: boolean, ipfs_id: string | null, note: string | null, date_created: string, date_modified: string, date_indexed: string, paths: Array<FilePath>, } |