UNPKG

@smeijer/ky

Version:

Tiny and elegant HTTP client based on the Fetch API

7 lines 236 B
export type Mutable<T> = { -readonly [P in keyof T]: T[P]; }; export type ObjectEntries<T> = T extends ArrayLike<infer U> ? Array<[string, U]> : Array<{ [K in keyof T]: [K, T[K]]; }[keyof T]>; //# sourceMappingURL=types.d.ts.map