UNPKG

@selenite/graph-editor

Version:

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

17 lines (16 loc) 278 B
export class PythonObject { id; type; constructor(id, type) { this.id = id; this.type = type; } } export class PythonProperty { object; name; constructor(object, name) { this.object = object; this.name = name; } }