@uprtcl/http-provider
Version:
_Prtcl provider wrappers around the native fetch api
8 lines (7 loc) • 393 B
TypeScript
import { Auth0ClientOptions } from '@auth0/auth0-spa-js';
import { HttpAuthenticatedConnectionImp } from '../http.auth.connection.imp';
export declare class HttpAuth0Connection extends HttpAuthenticatedConnectionImp {
constructor(host: string, auth0Config: Auth0ClientOptions);
/** overide to check for auth0 callback and login from there */
isLogged(): Promise<boolean>;
}