Created
September 17, 2018 19:49
-
-
Save rodrigorm/3f7f7371b3c1bb34000ef2396dc967bb 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
message = { | |
type: 'chat' | 'groupchat' | 'normal', | |
body: 'Olá' | |
}; | |
messageForm = { | |
type: 'chat' | 'groupchat' | 'normal', | |
form: { | |
title: '', | |
instruction: '', | |
type: '', | |
fields: [ | |
{ | |
type: 'list-multi', | |
name: 'name', | |
desc: '', | |
required: false, | |
label: '', | |
value: '', | |
options: [ | |
{ | |
value: '', | |
label: '', | |
], | |
} | |
] | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment