UNPKG

@veltdev/types

Version:

Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.

28 lines (27 loc) 629 B
import { AnchorRecord } from './anchor-record.data.model'; export declare class TargetElement { /** * Xpath of target element */ xpath?: string; /** * Full xpath of target element */ fXpath?: string; /** * Full xpath of target element with class names */ cfXpath?: string; /** * Relative top position of cursor on target element */ topPercentage: number; /** * Relative left position of cursor on target element */ leftPercentage: number; /** * Robust anchor descriptor for the element */ anchor?: AnchorRecord | null; }