enum Types {
  enum = 'enum',
  string = 'string',
  number = 'number',
  bool = 'bool',
  node = 'node',
  nodeList = 'node-list',
}

export default Types;
