| 1234567891011121314151617181920212223242526272829 |
- /**
- * Data type.
- */
- export declare const DataType: {
- ANY: 'any',
- STRING: 'string',
- NUMBER: 'number',
- BOOLEAN: 'boolean',
- ARRAY: 'array',
- OBJECT: 'object',
- };
- /**
- * Data type.
- */
- export type DataType = typeof DataType[keyof typeof DataType];
- /**
- * Data type list.
- */
- export declare const DATA_TYPE_LIST: DataType[];
- /**
- * Get data type from value.
- *
- * @param value
- */
- export declare function getDataTypeFromValue(value: unknown): DataType;
|