UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

23 lines 710 B
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<{ foreground: ColorType; background: ColorType; reference: ColorType; threshold: number; precision: number; }>; outputs: ToOutput<{ inRange: boolean; color: ColorType; alpha: number; }>; constructor(props: INodeDefinition); execute(): void | Promise<void>; } //# sourceMappingURL=matchAlpha.d.ts.map