/** @packageDocumentation * @module PresentationRules */ import { SchemasSpecification } from "../SchemasSpecification"; import { ChildNodeSpecificationBase, ChildNodeSpecificationTypes, DefaultGroupingPropertiesContainer } from "./ChildNodeSpecification"; /** * Creates nodes for all available instances filtered only by the * [[supportedSchemas]] properties of the specification or the ruleset. * * @public * @deprecated Use [[InstanceNodesOfSpecificClassesSpecification]]. Will be removed in iModel.js 3.0 */ export interface DEPRECATED_AllInstanceNodesSpecification extends ChildNodeSpecificationBase, DefaultGroupingPropertiesContainer { /** Used for serializing to JSON. */ specType: ChildNodeSpecificationTypes.DEPRECATED_AllInstanceNodes; /** * Specification of schemas whose instances should be returned. */ supportedSchemas?: SchemasSpecification; } //# sourceMappingURL=AllInstanceNodesSpecification.d.ts.map