data-type.d.ts 267 B

12345678910111213141516
  1. /**
  2. * Data type.
  3. */
  4. export declare const DataType: {
  5. ANY: 'any';
  6. STRING: 'string';
  7. NUMBER: 'number';
  8. BOOLEAN: 'boolean';
  9. ARRAY: 'array';
  10. OBJECT: 'object';
  11. };
  12. /**
  13. * Type of DataType.
  14. */
  15. export type DataType = (typeof DataType)[keyof typeof DataType];