UNPKG

@selenite/graph-editor

Version:

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

16 lines (15 loc) 516 B
/** * ## I/O related nodes. * * This module contains nodes that are used to read, write, and display data. * * For example, the display node * can be used to show any supplied data in real time. Another example is the download node, which can be used * to download data to the user's computer. * @module */ export * as Append from './AppendNode'; export * as Display from './DisplayNode'; export * as Download from './DownloadNode'; export * as Format from './FormatNode'; export * as Log from './LogNode';