@tokens-studio/graph-engine-nodes-figma
Version:
Figma-specific nodes for the graph engine
16 lines • 510 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;
}>;
outputs: ToOutput<{
token: SingleToken;
}>;
constructor(props: INodeDefinition);
execute(): void | Promise<void>;
}
//# sourceMappingURL=scopeAll.d.ts.map