Add basic esper status info support

This commit is contained in:
uwap 2018-01-14 01:20:30 +01:00
parent 832ed3d1bf
commit da7105c90b
5 changed files with 51 additions and 6 deletions

View file

@ -50,12 +50,17 @@ declare type UILink = {
link: string
} & UIBase;
declare type UIText = {
type: "text"
} & UIBase;
declare type ControlUI =
UIToggle
| UIDropDown
| UISlider
| UISection
| UILink
| UIText
declare type Control = {
name: string,