type Type =
  'array' |
  'boolean' |
  'error' |
  'function' |
  'map' |
  'null' |
  'number' |
  'object' |
  'set' |
  'string' |
  'symbol' |
  'undefined';

export type {
  Type
};
