UNPKG

@selenite/graph-editor

Version:

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

13 lines (12 loc) 316 B
/** * Nodes for creating and manipulating strings. * @module */ import { type NodeParams } from '../Node.svelte'; import { InputControlNode } from './common-data-nodes.svelte'; /** * Creates a string. */ export declare class StringNode extends InputControlNode<'text'> { constructor(params?: NodeParams); }