mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 06:59:17 -04:00
* CRUD for tags. * Implement tags query in open.rs and make some changes to CRUD. * Tag update. * Hopefully working get tags. * added node config + spaces schema * add missing routes * begin tag ui * renaming query names to better fit convention * tags progress * tag edit * fix delete tag description Co-authored-by: xPolar <polar@polar.blue>
7 lines
490 B
TypeScript
7 lines
490 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { File } from "./File";
|
|
import type { JobReport } from "./JobReport";
|
|
import type { LocationResource } from "./LocationResource";
|
|
import type { Tag } from "./Tag";
|
|
|
|
export type CoreResource = { key: "Client" } | { key: "Library" } | { key: "Location", data: LocationResource } | { key: "File", data: File } | { key: "Job", data: JobReport } | { key: "Tag", data: Tag }; |