{"version":3,"file":"Point.js","sourceRoot":"../src/","sources":["Point.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * Point interface.\n *\n * @public\n * {@docCategory Point}\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport interface Point {\n  left?: number;\n  top?: number;\n  /** @deprecated Use `left` instead */\n  x?: number;\n  /** @deprecated Use `top` instead */\n  y?: number;\n}\n\n/**\n * Point interface.\n *\n * @public\n * @deprecated Use `Point` instead.\n * {@docCategory Point}\n */\nexport interface IPoint extends Point {}\n"]}