Type Alias HttpDefaults

HttpDefaults: {
    headers?: {
        [key: string | symbol]: string | null | undefined;
    };
    interceptors?: HttpInterceptor[];
    url?: string;
}