Created
July 1, 2020 20:12
-
-
Save guillaumewuip/e5f1a377469d7b98dbee9d6b00f61ba5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const createText = MessageUnion.of.Text; | |
export const createImage = MessageUnion.of.Image; | |
export type Text = ReturnType<typeof MessageUnion.of.Text>; | |
export type Image = ReturnType<typeof MessageUnion.of.Image>; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment