13 lines
208 B
TypeScript
13 lines
208 B
TypeScript
|
export interface INotification {
|
||
|
message: string;
|
||
|
style: string;
|
||
|
ejson: string;
|
||
|
collapse_key: string;
|
||
|
notId: string;
|
||
|
msgcnt: string;
|
||
|
title: string;
|
||
|
from: string;
|
||
|
image: string;
|
||
|
soundname: string;
|
||
|
}
|