auth-runtime/dist/http.d.ts

6 lines
294 B
TypeScript
Raw Normal View History

2026-03-11 23:33:43 +00:00
import type { ApiResponse, HttpMethod } from './types.js';
/**
* Make HTTP request to API
*/
export declare function requestApi(method: HttpMethod, url: string, authToken?: string, body?: string, extraHeaders?: Record<string, string>): Promise<ApiResponse>;
2026-03-11 23:33:43 +00:00
//# sourceMappingURL=http.d.ts.map