@koalarx/ui
Version:
Koala UI is a Design System developed in Angular whose objective is to facilitate and make your development faster and simpler, making this framework your greatest ally.
18 lines (17 loc) • 760 B
TypeScript
import { UntypedFormBuilder } from "@angular/forms";
import { KoalaDynamicFormConfigInterface } from "../../interfaces/koala.dynamic-form-config.interface";
import { DeviceDetectorService } from "ngx-device-detector";
import { DynamicFormBuilder } from "../dynamic-form.builder";
export declare class MoreItemsBuilder {
private label;
private name;
private btnAddLabel;
private min;
private max;
private formConfig;
private fb;
private deviceService;
private fieldConfig;
constructor(label: string, name: string, btnAddLabel: string, min: number, max: number, formConfig: KoalaDynamicFormConfigInterface, fb: UntypedFormBuilder, deviceService: DeviceDetectorService);
build(): DynamicFormBuilder;
}