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; }