UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

10 lines 279 B
import { IDictionary } from "../../typescript/i-dictionary.js"; /** * @public * Equivalent to Object.values. * * @remarks * See {@link dictionaryValues}. */ export declare function dictionaryValues<T>(d: IDictionary<T>): T[]; //# sourceMappingURL=dictionary-values.d.ts.map