Skip to content

Commit

Permalink
feat(map): export def types
Browse files Browse the repository at this point in the history
  • Loading branch information
fallenoak committed Jan 7, 2024
1 parent 02eb0c9 commit e88b214
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ export * from './map/Map.js';
export * from './map/MapArea.js';
export * from './map/MapChunk.js';
export * from './map/MapLayer.js';
export * from './map/MapDoodadDef.js';
export * from './map/MapObjDef.js';

export * from './model/M2Model.js';
export * from './model/M2SkinProfile.js';
Expand Down
1 change: 1 addition & 0 deletions src/lib/map/MapDoodadDef.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,4 @@ class MapDoodadDef {
}

export default MapDoodadDef;
export { MapDoodadDef };
1 change: 1 addition & 0 deletions src/lib/map/MapObjDef.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ class MapObjDef {
}

export default MapObjDef;
export { MapObjDef };

0 comments on commit e88b214

Please sign in to comment.