UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

20 lines 588 B
import { Curve } from '../../types.js'; import { INodeDefinition, Node } from '../../programmatic/node.js'; import { ToInput, ToOutput } from '../../programmatic/index.js'; export default class BezierCurveNode extends Node { static title: string; static type: string; static description: string; inputs: ToInput<{ x1: number; y1: number; x2: number; y2: number; }>; outputs: ToOutput<{ curve: Curve; }>; constructor(props: INodeDefinition); execute(): void | Promise<void>; } //# sourceMappingURL=bezier.d.ts.map