UNPKG

@tokens-studio/graph-engine

Version:

An execution engine to handle Token Studios generators and resolvers

17 lines 541 B
import { Node } from '../../programmatic/node.js'; import { StringSchema } from '../../schemas/index.js'; export default class NodeDefinition extends Node { static title = 'Math Expression'; static type = 'studio.tokens.preview.mathExpression'; static description = 'Visualize a math expression'; static annotations = { deprecated: true }; constructor(props) { super(props); this.addInput('value', { type: StringSchema }); } } //# sourceMappingURL=mathExpression.js.map