@itwin/presentation-common
Version:
Common pieces for iModel.js presentation packages
20 lines • 861 B
TypeScript
/** @packageDocumentation
* @module PresentationRules
*/
import { RuleBase } from "../Rule.js";
import { PropertyCategorySpecification } from "./modifiers/PropertyCategorySpecification.js";
/**
* A rule that allows overriding the default property category.
*
* The default property category is a category that gets assigned to properties that otherwise have no category.
*
* @see [Default property category override reference documentation page]($docs/presentation/content/DefaultPropertyCategoryOverride.md)
* @public
*/
export interface DefaultPropertyCategoryOverride extends RuleBase {
/** Used for serializing to JSON. */
ruleType: "DefaultPropertyCategoryOverride";
/** Specification for the custom property category. */
specification: PropertyCategorySpecification;
}
//# sourceMappingURL=DefaultPropertyCategoryOverride.d.ts.map