mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-06 15:46:22 -05:00
12 lines
279 B
TypeScript
12 lines
279 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';
|