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