export type StrictValues = keyof T extends symbol ? [] : T[Exclude][]; /** * Returns an array of values of the enumerable properties of an object (using `Object.values`, but with stricter TypeScript typings). * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. * * @example * ```typescript * const obj = { a: 1, b: 2, c: 3, 5: 42, [Symbol()]: 'symbol' }; * valuesS(obj); // => [42, 1, 2, 3] * const values = valuesS(obj); // values :: number[] * ``` * * @see {@link Object.values} */ declare const valuesS: (o: T) => StrictValues; export default valuesS; //# sourceMappingURL=valuesS.d.ts.map