UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

22 lines 643 B
import { INodeDefinition, ToInput, ToOutput } from '../../index.js'; import { Node } from '../../programmatic/node.js'; export default class NodeDefinition extends Node { static title: string; static type: string; static description: string; inputs: ToInput<{ input: string; /** * The matching string. You do not need to include the slashes */ match: string; flags: string; replace: string; }>; outputs: ToOutput<{ value: string; }>; constructor(props: INodeDefinition); execute(): void | Promise<void>; } //# sourceMappingURL=regex.d.ts.map