UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

21 lines 658 B
import { ColorSpace } from './lib/spaces.js'; import { Color as ColorType } from '../../types.js'; 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<{ colorA: ColorType; colorB: ColorType; value: number; space: ColorSpace; }>; outputs: ToOutput<{ value: ColorType; }>; constructor(props: INodeDefinition); execute(): void | Promise<void>; } //# sourceMappingURL=mix.d.ts.map