We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1d50b6 commit 3cfc049Copy full SHA for 3cfc049
maker.js/makerjs-tests.ts
@@ -7,8 +7,8 @@ function test() {
7
var p1: MakerJs.IPoint = [0, 0];
8
var p2: MakerJs.IPoint = [1, 1];
9
var paths = testPaths();
10
- var path: MakerJs.IPath = testPaths[0];
11
- var arc: MakerJs.IPathArc = testPaths[0];
+ var path = <MakerJs.IPath>testPaths[0];
+ var arc = <MakerJs.IPathArc>testPaths[0];
12
var models = testModels();
13
var model: MakerJs.IModel = models[0];
14
maker.js/makerjs.d.ts
@@ -1,3 +1,5 @@
1
+// Type definitions for Maker.js
2
+// https://github.com/Microsoft/maker.js
3
/**
4
* Root module for Maker.js.
5
*
0 commit comments