Skip to content

Commit

Permalink
moved IModelPathCallback to root
Browse files Browse the repository at this point in the history
  • Loading branch information
danmarshall committed Nov 14, 2015
1 parent 6eeebd7 commit 1bd9dad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions target/ts/makerjs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,12 @@ declare module MakerJs {
*/
layer?: string;
}
/**
* Callback signature for model.walkPaths().
*/
interface IModelPathCallback {
(modelContext: IModel, pathId: string, pathContext: IPath): void;
}
/**
* Test to see if an object implements the required properties of a model.
*/
Expand Down Expand Up @@ -757,12 +763,6 @@ declare module MakerJs.model {
* @returns The scaled model (for chaining).
*/
function convertUnits(modeltoConvert: IModel, destUnitType: string): IModel;
/**
* Callback signature for walkPaths.
*/
interface IModelPathCallback {
(modelContext: IModel, pathId: string, pathContext: IPath): void;
}
/**
* Recursively walk through all paths for a given model.
*
Expand Down

0 comments on commit 1bd9dad

Please sign in to comment.