HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1991111/root/usr/share/nodejs/@types/es-abstract/2015/
Upload File :
Current File : //proc/1991111/root/usr/share/nodejs/@types/es-abstract/2015/Type.d.ts
// prettier-ignore
declare function Type<T>(x: T): T extends string ? 'String'
    : T extends number ? 'Number'
    : T extends boolean ? 'Boolean'
    : T extends symbol ? 'Symbol'
    : T extends null ? 'Null'
    : T extends undefined ? 'Undefined'
    : T extends object ? 'Object'
    : 'String' | 'Number' | 'Boolean' | 'Symbol' | 'Null' | 'Undefined' | 'Object' | undefined;
export = Type;