UNPKG

armisa-models

Version:
13 lines (12 loc) 472 B
import { AuthFactory, ILoginResponse } from "../../AuthFactory"; export declare class LoginByUserPass { #private; authFactory: AuthFactory; static createNew(authFactory: AuthFactory): LoginByUserPass | null; private constructor(); login: () => void; loginAxios: (user: string, pass: string, rememberMe: boolean) => Promise<ILoginResponse>; get controllerPath(): string; get actionPath(): string; get routerPath(): string; }