UNPKG

@selenite/graph-editor

Version:

A graph editor for visual programming, based on rete and svelte.

11 lines (10 loc) 288 B
export declare class PythonObject { readonly id: number; readonly type: string; constructor(id: number, type: string); } export declare class PythonProperty { readonly object: PythonObject; readonly name: string; constructor(object: PythonObject, name: string); }