@mollie/api-client
Version:
Official Mollie API client for Node
9 lines (8 loc) • 401 B
TypeScript
/**
* Returns an object generated from the passed a list of key-value pairs.
*
* This function only exists to support Node.js < 12.0.0, which we only secretly support. Should we ever drop that
* support completely, this function can be removed in favour of `Object.fromEntries`.
*/
declare const _default: <T>(input: Iterable<readonly [string, T]>) => Record<string, T>;
export default _default;