6 lines
89 B
TypeScript
6 lines
89 B
TypeScript
export interface Message {
|
|
value?: any | undefined
|
|
length: number
|
|
received: Date
|
|
}
|