UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

14 lines 416 B
import { Color } from '../../types.js'; import { Node } from '../../programmatic/node.js'; import { ToInput } from '../../index.js'; export default class NodeDefinition extends Node { static title: string; static type: string; static description: string; inputs: ToInput<{ colorA: Color; colorB: Color; }>; constructor(props: any); } //# sourceMappingURL=colorCompare.d.ts.map