tia
Version:
Time is All (logs driven test engine with ExtJs support)
29 lines (28 loc) • 1.12 kB
TypeScript
import { ComponentAPI } from './component';
import { FormFieldBaseAPI } from './form-field-base';
import { BoundListAPI } from './boundlist';
import { ButtonAPI } from './button';
import { CheckBoxAPI } from './checkbox';
import { ComboBoxAPI } from './combobox';
import { FormAPI } from './form';
import { GridColumnAPI } from './gridcolumn';
import { TabAPI } from './tab';
import { TableViewAPI } from './tableview';
import { TabPanelAPI } from './tabpanel';
import { TextFieldAPI } from './textfield';
import { TreeViewAPI } from './treeview';
export declare class ExtJsCmpAPI {
static component: typeof ComponentAPI;
static formFieldBase: typeof FormFieldBaseAPI;
static boundlist: typeof BoundListAPI;
static button: typeof ButtonAPI;
static checkbox: typeof CheckBoxAPI;
static combobox: typeof ComboBoxAPI;
static form: typeof FormAPI;
static gridcolumn: typeof GridColumnAPI;
static tab: typeof TabAPI;
static tableview: typeof TableViewAPI;
static tabpanel: typeof TabPanelAPI;
static textfield: typeof TextFieldAPI;
static treeview: typeof TreeViewAPI;
}