UNPKG

@ng-flexy/form

Version:

Flexy components and tools to build Angular 8+ applications

14 lines (13 loc) 531 B
import { ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core'; import { FlexyFormFieldLayoutSchema } from '../models/layout-schema.model'; import { FlexyForm } from '../models/form.model'; export declare class FlexyFormAttributesDirective implements OnInit, OnDestroy { private renderer; private el; flexyForm: FlexyForm; componentSchema: FlexyFormFieldLayoutSchema; private _changesSubscription; constructor(renderer: Renderer2, el: ElementRef); ngOnInit(): void; ngOnDestroy(): void; }