@tokens-studio/graph-engine
Version:
An execution engine to handle Token Studios generators and resolvers
20 lines • 616 B
TypeScript
import { INodeDefinition, ToInput, ToOutput } from '../../index.js';
import { Node } from '../../programmatic/node.js';
import { ValueSnapMethod } from '../../types/index.js';
export default class NodeDefinition extends Node {
static title: string;
static type: string;
static description: string;
inputs: ToInput<{
value: number;
increment: number;
base: number;
method: ValueSnapMethod;
}>;
outputs: ToOutput<{
snapped: number;
}>;
constructor(props: INodeDefinition);
execute(): void | Promise<void>;
}
//# sourceMappingURL=snap.d.ts.map