UNPKG

@vincentt-sdks/campaign-sdk

Version:

Campaign SDK by Vincentt

13 lines (12 loc) 270 B
import { Auth } from '.'; interface FetchOptions extends RequestInit { headers: Record<string, string>; } export type CustomFetchParams = { url: string; options: FetchOptions; auth: Auth; apiKey: string; body?: Record<string, any>; }; export {};