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.
11 lines • 312 B
TypeScript
/**
* @public
* converts objects into key value pair tuples.
*
* @remarks
* See {@link dictionaryPairs}.
*/
export declare function dictionaryPairs<TKey extends string | number | symbol, TValue>(dictionary: {
[index in TKey]: TValue;
}): [TKey, TValue][];
//# sourceMappingURL=dictionary-pairs.d.ts.map