NotifyModel.ts 332 B

12345678910111213141516171819
  1. import BaseModel from "../../lightMVC/core/base/BaseModel";
  2. import Notification from "../Notification";
  3. export default class NotifyModel extends BaseModel {
  4. public init(): void {
  5. }
  6. public sendNotify(notify: string, data?: any): void {
  7. this.sendNoti(notify,data);
  8. }
  9. public clear(): void {
  10. }
  11. }