UNPKG

@cityssm/authentication-helper

Version:

Handles the authentication requests for web applications.

7 lines (6 loc) 206 B
export declare abstract class BaseAuthenticator { /** * Returns true when successfully authenticated. */ abstract authenticate: (userName: string, password: string) => Promise<boolean>; }