UNPKG

@boligmappa/web-component-auth

Version:

Web component for authenticating a user towards Boligmappa

14 lines 399 B
import { AxiosRequestHeaders } from "axios"; export interface AuthConfigModel { clientId: string; authCodeEndpoint: SaveTokenEndpointModel; idObject: any; scope: string; redirectUri?: string; } export interface SaveTokenEndpointModel { endpointUrl: string; headers?: AxiosRequestHeaders; method?: string; } //# sourceMappingURL=auth-config-model.d.ts.map