aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/Types.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/ui/Types.js')
-rw-r--r--vnext/src/ui/Types.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/vnext/src/ui/Types.js b/vnext/src/ui/Types.js
new file mode 100644
index 00000000..9bf7b513
--- /dev/null
+++ b/vnext/src/ui/Types.js
@@ -0,0 +1,15 @@
+import PropTypes from 'prop-types';
+
+export const UserType = PropTypes.shape({
+ uid: PropTypes.number.isRequired,
+ uname: PropTypes.string,
+ avatar: PropTypes.string,
+ uri: PropTypes.string
+});
+
+export const MessageType = PropTypes.shape({
+ mid: PropTypes.number,
+ user: UserType,
+ timestamp: PropTypes.string.isRequired,
+ body: PropTypes.string
+});