1
0
Fork 0

🚧 Question time

This commit is contained in:
joostdecock 2018-07-11 12:45:02 +00:00
parent 38ccf65789
commit 20eafd4a99
17 changed files with 123 additions and 44 deletions

5
dist/lib/point.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
export default class Point {
x: number;
y: number;
constructor(x: number, y: number);
}