UNPKG

angular2-schema-form

Version:

Angular2 Schema Form (DISCLAIMER: it is not related to angular-schema-form)

10 lines (9 loc) 339 B
import { FormProperty } from './formproperty'; export declare abstract class AtomicProperty extends FormProperty { setValue(value: any, onlySelf?: boolean): void; reset(value?: any, onlySelf?: boolean): void; resetValue(value: any): any; _hasValue(): boolean; abstract fallbackValue(): any; _updateValue(): void; }