UNPKG

webdriverio-automation

Version:

WebdriverIO-Automation android ios project

24 lines (19 loc) 464 B
///<reference path="../lib/webix/webix.d.ts"/> import {initialize} from "./controller/ui"; import {leftPanel} from "./ui/leftPanel/leftPanel"; import {rightPanel} from "./ui/rightPanel/rightPanel"; webix.ready(function () { webix.ui({ type : "line", cols : [ { width : 500, header : "Settings & Folders", headerHeight : 45, body : leftPanel }, { view : "resizer" }, rightPanel ] }); initialize(); });