Spaces:
Running
Running
File size: 950 Bytes
5b78906 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
/* tslint:disable */
/* eslint-disable */
/**
/* This file was automatically generated from pydantic models by running pydantic2ts.
/* Do not modify it by hand - just update the pydantic models and then re-run the script
*/
export interface BaseConfig {
[k: string]: unknown;
}
export interface Position {
x: number;
y: number;
[k: string]: unknown;
}
export interface Workspace {
env?: string;
nodes?: WorkspaceNode[];
edges?: WorkspaceEdge[];
[k: string]: unknown;
}
export interface WorkspaceNode {
id: string;
type: string;
data: WorkspaceNodeData;
position: Position;
[k: string]: unknown;
}
export interface WorkspaceNodeData {
title: string;
params: {
[k: string]: unknown;
};
display?: unknown;
error?: string | null;
[k: string]: unknown;
}
export interface WorkspaceEdge {
id: string;
source: string;
target: string;
sourceHandle: string;
targetHandle: string;
[k: string]: unknown;
}
|