This commit is contained in:
2023-07-11 09:53:08 +03:00
commit 7c7077a44a
16 changed files with 862 additions and 0 deletions

14
src/notification.ts Normal file
View File

@@ -0,0 +1,14 @@
export type TNotificationItem = {
code: string
text: string
}
export class NotificationItem implements TNotificationItem {
code: string
text: string
constructor(args: {code: string, text: string }) {
this.code = args.code
this.text = args.text
}
}