Last active
September 3, 2017 13:19
-
-
Save crucialfelix/efb1765a890901ecfad17a4a08d4b211 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 type MessageFragment = { | |
| // The ID of the object. | |
| id: string; | |
| body: string; | |
| createdOn: string; | |
| // Slug specifying a custom message type. | |
| messageType: string; | |
| author: { | |
| name: string; | |
| email: string; | |
| phone: string; | |
| thumb?: string; | |
| isStaff: boolean; | |
| pk?: number; | |
| }; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment