@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.
9 lines (8 loc) • 594 B
TypeScript
import { DynamicFormTypeFieldEnum } from "../../enums/dynamic-form-type-field.enum";
import { FieldBase } from "./field.base";
import { UntypedFormBuilder } from "@angular/forms";
import { KoalaDynamicFormConfigInterface } from "../../interfaces/koala.dynamic-form-config.interface";
import { DeviceDetectorService } from "ngx-device-detector";
export declare class FieldBuilder extends FieldBase {
constructor(label: string, name: string, type: DynamicFormTypeFieldEnum, formConfig: KoalaDynamicFormConfigInterface, fb: UntypedFormBuilder, deviceService: DeviceDetectorService);
}