UNPKG

@itwin/presentation-components

Version:

React components based on iTwin.js Presentation library

17 lines 718 B
/** @packageDocumentation * @module Core */ import { IModelConnection } from "@itwin/core-frontend"; import { SelectionHandler } from "@itwin/presentation-frontend"; /** * An interface for all unified selection components * @public * @deprecated in 5.12.0. All unified selection-driven components should use `SelectionStorage` from `@itwin/unified-selection` rather than `SelectionHandler`. */ export interface IUnifiedSelectionComponent { /** [IModelConnection]($core-frontend) used by this data provider */ readonly imodel: IModelConnection; /** Selection handler used by this component */ readonly selectionHandler?: SelectionHandler; } //# sourceMappingURL=IUnifiedSelectionComponent.d.ts.map