tia
Version:
Time is All (logs driven test engine with ExtJs support)
45 lines (36 loc) • 848 B
text/typescript
import { ComponentActions, ComponentChecks, ComponentGrabs, ComponentLogs } from './component';
const compName = 'Tab';
/**
* gT.eC.tab.a or gT.eC.tab.actions
*/
export class TabActions extends ComponentActions {
static compName = compName;
}
/**
* gT.eC.tab.c or gT.eC.tab.checks
*/
export class TabChecks extends ComponentChecks {
static compName = compName;
}
/**
* gT.eC.tab.g or gT.eC.tab.grabs
*/
export class TabGrabs extends ComponentGrabs {
static compName = compName;
}
/**
* gT.eC.tab.l or gT.eC.tab.logs
*/
export class TabLogs extends ComponentLogs {
static compName = compName;
}
export class TabAPI {
static a = TabActions;
static actions = TabActions;
static c = TabChecks;
static checks = TabChecks;
static g = TabGrabs;
static grabs = TabGrabs;
static l = TabLogs;
static logs = TabLogs;
}