Skip to content

Commit 1bd9dad

Browse files
committed
moved IModelPathCallback to root
1 parent 6eeebd7 commit 1bd9dad

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

target/ts/makerjs.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,12 @@ declare module MakerJs {
333333
*/
334334
layer?: string;
335335
}
336+
/**
337+
* Callback signature for model.walkPaths().
338+
*/
339+
interface IModelPathCallback {
340+
(modelContext: IModel, pathId: string, pathContext: IPath): void;
341+
}
336342
/**
337343
* Test to see if an object implements the required properties of a model.
338344
*/
@@ -757,12 +763,6 @@ declare module MakerJs.model {
757763
* @returns The scaled model (for chaining).
758764
*/
759765
function convertUnits(modeltoConvert: IModel, destUnitType: string): IModel;
760-
/**
761-
* Callback signature for walkPaths.
762-
*/
763-
interface IModelPathCallback {
764-
(modelContext: IModel, pathId: string, pathContext: IPath): void;
765-
}
766766
/**
767767
* Recursively walk through all paths for a given model.
768768
*

0 commit comments

Comments
 (0)