2025-10-01 19:55:38 +02:00

6 lines
251 B
TypeScript

import { IUser } from '../IUser';
export interface ITestableUserManager {
getDefaultUser(callback: (user: IUser) => void): any;
getUserByNamePassword(name: string, password: string, callback: (error: Error, user?: IUser) => void): any;
}