1
0
Fork 0
freesewing/dist/lib/point.d.ts

6 lines
100 B
TypeScript
Raw Normal View History

2018-07-11 12:45:02 +00:00
export default class Point {
x: number;
y: number;
constructor(x: number, y: number);
}