UNPKG

oidc-client-rx

Version:

ReactiveX enhanced OIDC and OAuth2 protocol support for browser-based JavaScript applications

11 lines 531 B
import { HttpHeaders } from "@ngify/http"; import type { Observable } from "rxjs"; import type { OpenIdConfiguration } from "../config/openid-configuration"; export declare class DataService { private readonly httpClient; get<T>(url: string, config: OpenIdConfiguration, token?: string): Observable<T>; post<T>(url: string | null, body: unknown, config: OpenIdConfiguration, headersParams?: HttpHeaders): Observable<T>; private prepareHeaders; private prepareParams; } //# sourceMappingURL=data.service.d.ts.map