//#region src/object/keys.d.ts /** * Creates an array of the own enumerable property names of object * @param obj - The object to query * @returns Returns the array of property names * @example * keys({ a: 1, b: 2, c: 3 }); // ['a', 'b', 'c'] */ declare function keys(obj: T): Array; //#endregion export { keys }; //# sourceMappingURL=keys.d.mts.map