UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

19 lines 533 B
import { INodeDefinition, ToInput, ToOutput } from '../../index.js'; import { Node } from '../../programmatic/node.js'; /** * This node converts a string to lowercase */ export default class NodeDefinition extends Node { static title: string; static type: string; static description: string; inputs: ToInput<{ value: string; }>; outputs: ToOutput<{ value: string; }>; constructor(props: INodeDefinition); execute(): void | Promise<void>; } //# sourceMappingURL=lowercase.d.ts.map