2024-03-16 14:11:43 +08:00

9 lines
200 B
TypeScript

export default class Coord {
private x;
private y;
private width;
private height;
constructor(x: any, y: any, width: any, height: any);
contain: (x: any, y: any) => boolean;
}