@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
7 lines (6 loc) • 453 B
TypeScript
import { PropertyDefinition, PropertyDisplaySettingsType, PropertyEditorSettingsType, PropertySetupSettingsType } from "./PropertyDefinition";
export interface PropertyConfiguration<TPropertyDef extends PropertyDefinition<any, any, any>> {
propertyDisplaySettings: PropertyDisplaySettingsType<TPropertyDef>;
propertyEditorSettings: PropertyEditorSettingsType<TPropertyDef>;
propertySetupSettings?: PropertySetupSettingsType<TPropertyDef>;
}