Skip to content

Instantly share code, notes, and snippets.

@guillaumewuip
Created February 20, 2020 07:44
Show Gist options
  • Save guillaumewuip/19d41031185c5f7fc33f7361be2285bb to your computer and use it in GitHub Desktop.
Save guillaumewuip/19d41031185c5f7fc33f7361be2285bb to your computer and use it in GitHub Desktop.
How to model your entities - 1
// Message.ts
export type TextMessage = {
text: string;
}
export type ImageMessage = {
mimeType: string;
url: string;
description: string;
}
export type AudioMessage = {
mimeType: string;
url: string;
description: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment