react-native-vision-camera/package/src/Point.ts
Marc Rousavy 14721d314f
chore: Remove semicolons (#1846)
* chore: Disable `semi` in Prettier

* chore: Format w/o semi

* Remove more `;`

* Lint example

* More ;
2023-09-26 11:39:17 +02:00

14 lines
235 B
TypeScript

/**
* Represents a Point in a 2 dimensional coordinate system.
*/
export interface Point {
/**
* The X coordinate of this Point. (double)
*/
x: number
/**
* The Y coordinate of this Point. (double)
*/
y: number
}