HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/nodejs/@types/es-abstract/helpers/OwnPropertyKeys.d.ts
/**
 * Returns the keys of the own properties of an object. The own properties of an object are those that are defined directly
 * on that object, and are not inherited from the object's prototype. The properties of an object include both fields (objects) and functions.
 *
 * @param target Object that contains the own properties.
 *
 * @throws {TypeError} If `target` isn't an object.
 */
declare function OwnPropertyKeys(target: object): Array<string | symbol>;
export = OwnPropertyKeys;