yesManAuthenticationHandler.d.ts 400 B

12345678
  1. import { IAuthenticationHandler } from "./index.js";
  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