@scandit/web-datacapture-barcode
Version:
Scandit Data Capture SDK for the Web
10 lines (9 loc) • 651 B
TypeScript
import { n as BarcodeArAnnotationAnchor } from "../../../../BarcodeArAnnotation-nsUjxSNs.js";
import { Direction } from "@scandit/web-datacapture-core";
//#region src/main/ar/ui/organisms/private/AnchorAndDirectionUtils.d.ts
declare const isDirectionHorizontal: (direction: Direction | undefined) => boolean;
declare const isDirectionVertical: (direction: Direction | undefined) => boolean;
declare const isAnchorYcenter: (anchor: BarcodeArAnnotationAnchor) => boolean;
declare const isAnchorXcenter: (anchor: BarcodeArAnnotationAnchor) => boolean;
//#endregion
export { isAnchorXcenter, isAnchorYcenter, isDirectionHorizontal, isDirectionVertical };