Message.ts 69 B

123456
  1. type Message = {
  2. type: string,
  3. text: string
  4. };
  5. export { Message };