export interface IMessageOptions { timestamp: number; from: string; to: string; type: string; body: T; } export default class Message { timestamp: number; from: string; to: string; type: string; body: T; constructor(options: IMessageOptions); }