/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ /*** THIS FILE IS GENERATED, DO NOT EDIT ***/ import { BitFlag } from "../schema/BitmapSchema.js"; /** * The WildcardPathFlagsBitmap indicates flags that apply to the path, affecting wildcard expansion. * * The following flags are defined: * * @see {@link MatterSpecification.v151.Core} ยง 8.9.2.5 */ export declare const WildcardPathFlags: { /** * Skip the Root Node endpoint (endpoint 0) during wildcard expansion. */ wildcardSkipRootNode: BitFlag; /** * Skip several large global attributes during wildcard expansion. */ wildcardSkipGlobalAttributes: BitFlag; /** * Skip the AttributeList global attribute during wildcard expansion. */ wildcardSkipAttributeList: BitFlag; doNotUse: BitFlag; /** * Skip the AcceptedCommandList and GeneratedCommandList global attributes during wildcard expansion. */ wildcardSkipCommandLists: BitFlag; /** * Skip any manufacturer-specific clusters or attributes during wildcard expansion. */ wildcardSkipCustomElements: BitFlag; /** * Skip any Fixed (F) quality attributes during wildcard expansion. */ wildcardSkipFixedAttributes: BitFlag; /** * Skip any Changes Omitted (C) quality attributes during wildcard expansion. */ wildcardSkipChangesOmittedAttributes: BitFlag; /** * Skip all clusters with the Diagnostics (K) quality during wildcard expansion. */ wildcardSkipDiagnosticsClusters: BitFlag; }; //# sourceMappingURL=WildcardPathFlags.d.ts.map