mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
9 lines
574 B
TypeScript
9 lines
574 B
TypeScript
|
import {UserDTO, UserRoles} from "../../../common/entities/UserDTO";
|
||
|
export interface IUserManager {
|
||
|
findOne(filter: any, cb: (error: any, result: UserDTO) => void): void;
|
||
|
find(filter: any, cb: (error: any, result: Array<UserDTO>) => void): void;
|
||
|
createUser(user: UserDTO, cb: (error: any, result: UserDTO) => void): void;
|
||
|
deleteUser(id: number, cb: (error: any, result: string) => void): void;
|
||
|
changeRole(id: number, newRole: UserRoles, cb: (error: any) => void): void;
|
||
|
changePassword(request: any, cb: (error: any, result: string) => void): void;
|
||
|
}
|