@tokens-studio/graph-engine
Version:
An execution engine to handle Token Studios generators and resolvers
14 lines • 448 B
JavaScript
import { CurveSchema } from '../../schemas/index.js';
import { Node } from '../../programmatic/node.js';
export default class NodeDefinition extends Node {
static title = 'PreviewCurve';
static type = 'studio.tokens.preview.curve';
static description = 'Previews a curve';
constructor(props) {
super(props);
this.addInput('value', {
type: CurveSchema
});
}
}
//# sourceMappingURL=curve.js.map