/** * Provides a utility function to determine whether a graphic's origin is a [DimensionFeatureGraphicOrigin](https://developers.arcgis.com/javascript/latest/references/core/graphic/DimensionFeatureGraphicOrigin/). * * @since 5.1 * @example * // Use hitTest() to get a graphic, then check whether it originated from a DimensionFeatureLayer. * view.hitTest(screenPoint).then((response) => { * const graphic = response.results[0]?.graphic; * if (!graphic) { * return; * } * if (isDimensionFeatureGraphicOrigin(graphic.origin)) { * // hitTest returned a graphic from a DimensionFeatureLayer. * // Use this info for your processing logic. * } else { * console.log("graphic's origin is NOT a DimensionFeatureLayer"); * } * }); */ import type DimensionFeatureGraphicOrigin from "./DimensionFeatureGraphicOrigin.js"; import type GraphicOrigin from "./GraphicOrigin.js"; /** * Utility function that determines whether a graphic’s origin is a [DimensionFeatureGraphicOrigin](https://developers.arcgis.com/javascript/latest/references/core/graphic/DimensionFeatureGraphicOrigin/). * * @param origin - The graphic origin to check. * @returns Returns `true` if the graphic origin is of type [DimensionFeatureGraphicOrigin](https://developers.arcgis.com/javascript/latest/references/core/graphic/DimensionFeatureGraphicOrigin/), `false` otherwise. */ export function isDimensionFeatureGraphicOrigin(origin: GraphicOrigin | null | undefined): origin is DimensionFeatureGraphicOrigin;