Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/IElementRect.ts
1028 views
1
import { INodeVisibility } from './INodeVisibility';
2
3
export default interface IElementRect {
4
y: number;
5
x: number;
6
height: number;
7
width: number;
8
tag: string;
9
nodeVisibility?: INodeVisibility;
10
}
11
12