export default class Message { type: string; builder: (input: Record) => any; constructor({ type, builder }: { type: string; builder(input: Record): any }) { this.type = type; this.builder = builder; } build(input: Record): any { return this.builder(input); } }