/** @packageDocumentation * @module PresentationRules */ import { RuleBase, RuleTypes } from "../Rule"; import { PropertyCategorySpecification } from "./modifiers/PropertyCategorySpecification"; /** * 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 [More details]($docs/learning/presentation/Content/DefaultPropertyCategoryOverride.md) * @public */ export interface DefaultPropertyCategoryOverride extends RuleBase { /** Used for serializing to JSON. */ ruleType: RuleTypes.DefaultPropertyCategoryOverride; /** Specification of the category override */ specification: PropertyCategorySpecification; } //# sourceMappingURL=DefaultPropertyCategoryOverride.d.ts.map