0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
12 lines
557 B
TypeScript
12 lines
557 B
TypeScript
type primitive = string | number | bigint | boolean | symbol | null | undefined;
|
|
|
|
declare function whichBoxedPrimitive(value: primitive): null;
|
|
declare function whichBoxedPrimitive(value: BigInt): 'BigInt';
|
|
declare function whichBoxedPrimitive(value: Boolean): 'Boolean';
|
|
declare function whichBoxedPrimitive(value: Number): 'Number';
|
|
declare function whichBoxedPrimitive(value: String): 'String';
|
|
declare function whichBoxedPrimitive(value: Symbol): 'Symbol';
|
|
declare function whichBoxedPrimitive(value: unknown): undefined;
|
|
|
|
export = whichBoxedPrimitive;
|