UNPKG

type-plus

Version:
9 lines 301 B
/** * Types that can contain custom properties. */ export type ComposableTypes = object | Function; /** * Types that cannot contain custom properties. */ export type NonComposableTypes = boolean | number | string | symbol | bigint | undefined | null; //# sourceMappingURL=composable_types.d.ts.map