@kre-form/ant
Version:
17 lines (16 loc) • 513 B
TypeScript
import { OnInit, OnChanges, OnDestroy, SimpleChanges } from "@angular/core";
import { IBusinessTable } from "../../tools/util";
export declare class KreFormDesignTables implements OnInit, OnChanges, OnDestroy {
businessTable: IBusinessTable;
radioValue: string;
tableData: never[];
constructor();
tableScroll: {
y: string;
};
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;
initTableData(): void;
selectOK(table: any): void;
}