UNPKG

@typespec/ts-http-runtime

Version:

Isomorphic client library for making HTTP requests in node.js and browser.

12 lines 376 B
/** * A generic shape for a plain JS object. */ export type UnknownObject = { [s: string]: unknown; }; /** * Helper to determine when an input is a generic JS object. * @returns true when input is an object type that is not null, Array, RegExp, or Date. */ export declare function isObject(input: unknown): input is UnknownObject; //# sourceMappingURL=object.d.ts.map