@tokens-studio/graph-engine-nodes-figma
Version:
Figma-specific nodes for the graph engine
22 lines • 673 B
TypeScript
import { INodeDefinition, Node, ToInput, ToOutput } from '@tokens-studio/graph-engine';
import { SingleToken } from '@tokens-studio/types';
export default class NodeDefinition extends Node {
static title: string;
static type: string;
static description: string;
inputs: ToInput<{
token: SingleToken;
allFills: boolean;
effects: boolean;
frameFill: boolean;
shapeFill: boolean;
stroke: boolean;
textFill: boolean;
}>;
outputs: ToOutput<{
token: SingleToken;
}>;
constructor(props: INodeDefinition);
execute(): void | Promise<void>;
}
//# sourceMappingURL=scopeColor.d.ts.map