@anthropic-ai/sdk
Version:
The official TypeScript library for the Anthropic API
11 lines • 415 B
TypeScript
import type { FinalizedRequestInit } from "../internal/types.js";
/**
* An HTTP request as it will be passed to `fetch`, the `RequestInit` plus the request `url`.
*
* `headers` is always a `Headers` instance and may be mutated in place.
*/
export type APIRequest = FinalizedRequestInit & {
/** The fully-built request URL, including query parameters. */
url: string;
};
//# sourceMappingURL=api.d.ts.map