Skip to content

Instantly share code, notes, and snippets.

@crucialfelix
Last active September 3, 2017 13:19
Show Gist options
  • Select an option

  • Save crucialfelix/efb1765a890901ecfad17a4a08d4b211 to your computer and use it in GitHub Desktop.

Select an option

Save crucialfelix/efb1765a890901ecfad17a4a08d4b211 to your computer and use it in GitHub Desktop.
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