armisa-models
Version:
models of armisa!
16 lines (15 loc) • 849 B
TypeScript
import { Tabbing } from ".";
import { ElementsOfFormFactory } from "..";
import { DateBoxFactory } from "../../../ComponentFactory/DateBox/DateBoxFactory";
import { StructrulCodeFactory } from "../../../ComponentFactory/StructructrulCode/StructrulCodeFactory";
import { ElementFactory } from "../ElementFactory";
export declare class validationTabbing {
tabbing: Tabbing;
currentElementFactory: ElementFactory;
static gotoNextElement(tabbing: Tabbing, currentElementFactory: ElementFactory): void;
elementsOfForm: ElementsOfFormFactory;
constructor(tabbing: Tabbing, currentElementFactory: ElementFactory);
gotoNextElement: () => void;
goToNextElementDataBox: (currentDateBoxFactory: DateBoxFactory) => void;
goToNextElementStructrulCode: (currentStructrulCodeFactory: StructrulCodeFactory) => void;
}