@exodus/solana-web3.js
Version:
Solana Javascript API
17 lines (16 loc) • 548 B
TypeScript
export declare const Headers: {
new (init?: HeadersInit | undefined): Headers;
prototype: Headers;
};
export declare const Request: {
new (input: RequestInfo, init?: RequestInit | undefined): Request;
prototype: Request;
};
export declare const Response: {
new (body?: BodyInit | null | undefined, init?: ResponseInit | undefined): Response;
prototype: Response;
error(): Response;
redirect(url: string | URL, status?: number | undefined): Response;
};
declare const _default: typeof fetch;
export default _default;