type-plus
Version:
Provides additional types for TypeScript.
9 lines • 301 B
TypeScript
/**
* 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