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