import { IDynamicProperty } from "./dynamicProperty"; export interface PropertiesFactory { asProperty(value: any, name?: string): IDynamicProperty; asChainedProperty(defaultValue: any, propertyName: string, fallbackPropertyNames: Array): IDynamicProperty; }