@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
12 lines • 436 B
JavaScript
/**
* Mechanics Re-export Module
*
* This file re-exports everything from the mechanics/index module
* to maintain compatibility with imports that expect mechanics.ts
* instead of mechanics/index.ts
*/
// Re-export all named exports from mechanics/index
export * from './mechanics/index.js';
// Re-export the default export from mechanics/index
export { default } from './mechanics/index.js';
//# sourceMappingURL=mechanics.js.map