UNPKG

nakedobjects.spa

Version:

Single Page Application client for a Naked Objects application.

13 lines (12 loc) 548 B
import { QueryList } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { EditPropertyComponent } from '../edit-property/edit-property.component'; import { PropertyViewModel } from '../view-models/property-view-model'; import { DomainObjectViewModel } from '../view-models/domain-object-view-model'; export declare class PropertiesComponent { parent: DomainObjectViewModel; form: FormGroup; properties: PropertyViewModel[]; propComponents: QueryList<EditPropertyComponent>; focus(): boolean; }