default: {
    add: (
        userModel: { model: IModel; template: string },
    ) => Promise<IFrontNewUserModel>;
    del: (userModel: { id: string }) => Promise<void>;
    update: (userModel: { id: string }, data: any[]) => Promise<void>;
} = ...

Type declaration

  • add: (userModel: { model: IModel; template: string }) => Promise<IFrontNewUserModel>
  • del: (userModel: { id: string }) => Promise<void>
  • update: (userModel: { id: string }, data: any[]) => Promise<void>