@tokens-studio/graph-engine-nodes-figma
Version:
Figma-specific nodes for the graph engine
17 lines • 542 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);
private getScopesByType;
execute(): void | Promise<void>;
}
//# sourceMappingURL=scopeByType.d.ts.map