| 30 | } |
| 31 | |
| 32 | export interface IMessage { |
| 33 | id: number; |
| 34 | appid: number; |
| 35 | message: string; |
| 36 | title: string; |
| 37 | priority: number; |
| 38 | date: string; |
| 39 | image?: string; |
| 40 | extras?: IMessageExtras; |
| 41 | } |
| 42 | |
| 43 | export interface IMessageExtras { |
| 44 | [key: string]: any; // eslint-disable-line @typescript-eslint/no-explicit-any |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…