@nodescript/core
Version:
Visual programming language for Browser and Node
23 lines • 563 B
JavaScript
import { ModuleSpecSchema } from '../schema/ModuleSpec.js';
export const Comment = ModuleSpecSchema.create({
moduleName: 'Comment',
version: '1.0.0',
params: {
comment: {
schema: { type: 'string' },
hideSocket: true,
attributes: {
renderer: 'textarea',
minHeight: 2,
},
}
},
result: {
schema: { type: 'any' },
hideSocket: true,
},
attributes: {
hideEvalControls: true,
},
});
//# sourceMappingURL=Comment.js.map