NodeVary.js 200 B

123456789101112131415
  1. class NodeVary {
  2. constructor( name, type, snippet = '' ) {
  3. this.name = name;
  4. this.type = type;
  5. this.snippet = snippet;
  6. }
  7. }
  8. NodeVary.prototype.isNodeVary = true;
  9. export default NodeVary;