UNPKG

293 BTypeScriptView Raw
1import { FetchOptions } from '../global';
2/**
3 * @ts-ignore
4 */
5export type WorkerRefreshTokenMessage = {
6 timeout: number;
7 fetchUrl: string;
8 fetchOptions: FetchOptions;
9 useFormData?: boolean;
10 auth: {
11 audience: string;
12 scope: string;
13 };
14};