@veltdev/sdk
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.
23 lines (22 loc) • 472 B
TypeScript
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;
}