UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

10 lines (9 loc) 689 B
import { Guid, GuidValue, PropertyBinding, PropertyConfiguration, PropertyDefinition, IPropertyBindingProvider } from "../../../../models"; export declare class BusinessProfilePropertyBindingProvider implements IPropertyBindingProvider { id: Guid; private static bindingConfigs; private localizationService; getBindingById(bindingId: GuidValue): Promise<PropertyBinding<PropertyDefinition<any, any, any>>>; getBindings(): Promise<PropertyBinding<PropertyDefinition<any, any, any>>[]>; getConfiguration<TPropertyDefintion extends PropertyDefinition<any, any, any>>(binding: PropertyBinding<TPropertyDefintion>): Promise<PropertyConfiguration<TPropertyDefintion>>; }