Interface UseRefreshTokenArgs

interface UseRefreshTokenArgs {
    extraHeaders?: Record<string, ExtraHeader>;
    extraTokenParams?: Record<string, unknown>;
    redirect_uri?: string;
    resource?: string | string[];
    state: RefreshState;
    timeoutInSeconds?: number;
}

Properties

extraHeaders?: Record<string, ExtraHeader>
extraTokenParams?: Record<string, unknown>
redirect_uri?: string
resource?: string | string[]
timeoutInSeconds?: number