UNPKG

@flex-development/tutils

Version:
11 lines (10 loc) 255 B
/** * @file Type Definitions - BuiltIn * @module tutils/types/BuiltIn */ import type Primitive from './primitive.mjs'; /** * Built-in values. */ declare type BuiltIn = Date | Error | Function | Primitive | RegExp; export { type BuiltIn as default };