YesManAuthenticationHandler.d.ts 391 B

12345678
  1. import { IAuthenticationHandler } from ".";
  2. export declare class YesManAuthenticationHandler implements IAuthenticationHandler {
  3. private useTotp;
  4. constructor(useTotp: boolean);
  5. tryLogin(username: string, password: string, totp?: string): Promise<boolean | null>;
  6. needTotp(username: string): Promise<boolean | null>;
  7. }
  8. //# sourceMappingURL=YesManAuthenticationHandler.d.ts.map