mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-10 10:36:25 -04:00
5 lines
270 B
TypeScript
5 lines
270 B
TypeScript
import type { File } from "./File";
|
|
import type { JobReport } from "./JobReport";
|
|
import type { LocationResource } from "./LocationResource";
|
|
|
|
export type CoreResource = "Client" | "Library" | { Location: LocationResource } | { File: File } | { Job: JobReport } | "Tag"; |