node-radius-server/src/types/Authentication.ts

4 lines
105 B
TypeScript
Raw Normal View History

export interface IAuthentication {
authenticate(username: string, password: string): Promise<string>;
}