UNPKG

@xylabs/typeof

Version:

Base functionality used throughout XY Labs TypeScript/JavaScript libraries

4 lines (2 loc) 187 B
export type FieldType = 'string' | 'number' | 'object' | 'symbol' | 'undefined' | 'null' | 'array' | 'function' export type ObjectTypeShape = Record<string | number | symbol, FieldType>