This commit is contained in:
2023-09-14 18:19:36 +03:00
parent 4bc155683b
commit 58770bf89f
13 changed files with 164 additions and 77 deletions

View File

@@ -7,7 +7,7 @@ export class NotificationItem implements TNotificationItem {
code: string
text: string
constructor(args: {code: string, text: string }) {
constructor(args: { code: string; text: string }) {
this.code = args.code
this.text = args.text
}