UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

19 lines 620 B
import { Color as ColorType } from '../../types.js'; import { INodeDefinition, ToInput, ToOutput } from '../../index.js'; import { Node } from '../../programmatic/node.js'; export { ColorModifierTypes } from '@tokens-studio/types'; export default class NodeDefinition extends Node { static title: string; static type: string; static description: string; inputs: ToInput<{ color: ColorType; value: number; }>; outputs: ToOutput<{ value: ColorType; }>; constructor(props: INodeDefinition); execute(): void | Promise<void>; } //# sourceMappingURL=lighten.d.ts.map