Skip to content

Instantly share code, notes, and snippets.

@guillaumewuip
Created July 1, 2020 20:11
Show Gist options
  • Save guillaumewuip/26138cfced091b35db1e8d1d10afa3b2 to your computer and use it in GitHub Desktop.
Save guillaumewuip/26138cfced091b35db1e8d1d10afa3b2 to your computer and use it in GitHub Desktop.
type $Text = {
text: string;
};
type $Image = {
url: string;
description: string;
};
const MessageUnion = Union.of({
Text: Union.type<$Text>(),
Image: Union.type<$Image>(),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment