@mollie/api-client
Version:
Official Mollie API client for Node
8 lines (7 loc) • 321 B
TypeScript
/**
* Returns an array of the passed object's own enumerable string-keyed property `[key, value]` pairs.
*
* If support for Node.js < 7.0.0 is ever dropped, this function can be removed in favour of `Object.entries`.
*/
declare const _default: <T>(input: Record<string, T>) => [string, T][];
export default _default;