fixed test errors

This commit is contained in:
Dan Marshall
2015-06-30 15:31:57 -07:00
parent d1d50b6963
commit 3cfc049ea8
2 changed files with 4 additions and 2 deletions

View File

@@ -7,8 +7,8 @@ function test() {
var p1: MakerJs.IPoint = [0, 0];
var p2: MakerJs.IPoint = [1, 1];
var paths = testPaths();
var path: MakerJs.IPath = testPaths[0];
var arc: MakerJs.IPathArc = testPaths[0];
var path = <MakerJs.IPath>testPaths[0];
var arc = <MakerJs.IPathArc>testPaths[0];
var models = testModels();
var model: MakerJs.IModel = models[0];

View File

@@ -1,3 +1,5 @@
// Type definitions for Maker.js
// https://github.com/Microsoft/maker.js
/**
* Root module for Maker.js.
*