UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

18 lines 555 B
import { INodeDefinition, Node } from '../../programmatic/node.js'; import { ToInput, ToOutput } from '../../programmatic/index.js'; export default class StringInterpolationNode extends Node { static title: string; static type: string; static description: string; inputs: ToInput<{ template: string; }> & ToInput<{ [key: string]: any; }>; outputs: ToOutput<{ value: string; }>; constructor(props: INodeDefinition); execute(): void | Promise<void>; } //# sourceMappingURL=interpolate.d.ts.map