UNPKG

xiaohejs

Version:

🎈 小何同学的JavaScript工具箱

13 lines (12 loc) 403 B
type NullableBoolean = boolean | null; type NullableNumber = number | null; type NullableString = string | null; type NumberLike = number | `${number}`; interface IObjectRecord { [key: string]: any; } interface IObjectMap<T> { [key: string]: T; } declare const _default: {}; export { _default as default, NullableBoolean, NullableNumber, NullableString, NumberLike, IObjectRecord, IObjectMap };