splid-js-googlesheet-updater/node_modules/splid-js/dist/mjs/requestConfig.d.ts
2025-05-27 21:06:02 +02:00

10 lines
284 B
TypeScript

import { Logger } from './logging';
export interface RequestConfig {
fetch: typeof fetch;
baseUrl: string;
logger: Logger;
getHeaders: () => Record<string, string>;
installationId: string;
randomUUID: () => string;
assertResponseBody: <T>(body: T) => T;
}