mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-09 18:16:23 -04:00
9 lines
942 B
TypeScript
9 lines
942 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { DirectoryWithContents } from "./DirectoryWithContents";
|
|
import type { JobReport } from "./JobReport";
|
|
import type { LocationResource } from "./LocationResource";
|
|
import type { NodeState } from "./NodeState";
|
|
import type { Statistics } from "./Statistics";
|
|
import type { Volume } from "./Volume";
|
|
|
|
export type CoreResponse = { key: "Success", data: null } | { key: "SysGetVolumes", data: Array<Volume> } | { key: "SysGetLocation", data: LocationResource } | { key: "SysGetLocations", data: Array<LocationResource> } | { key: "LibGetExplorerDir", data: DirectoryWithContents } | { key: "NodeGetState", data: NodeState } | { key: "LocCreate", data: LocationResource } | { key: "JobGetRunning", data: Array<JobReport> } | { key: "JobGetHistory", data: Array<JobReport> } | { key: "GetLibraryStatistics", data: Statistics }; |