pokemon-showdown/sim/index.ts
Guangcong Luo 7436c1f0f2 Remove import = and export =
`import =` and `export =` are really only intended for backwards
compatibility with CommonJS. While I really don't like the new module
system TC39 has designed for us, it's what we should be using, and
consistency is important.
2019-05-16 01:27:07 +04:00

20 lines
526 B
TypeScript

/**
* Simulator process
* Pokemon Showdown - http://pokemonshowdown.com/
*
* This file is where the battle simulation itself happens.
*
* The most important part of the simulation happens in runEvent -
* see that function's definition for details.
*
* @license MIT
*/
export {Battle} from './battle';
export {BattleStream} from './battle-stream';
export {Dex} from './dex';
export {Pokemon} from './pokemon';
export {PRNG} from './prng';
export {Side} from './side';
export {TeamValidator} from './team-validator';