Skip to content

Commit

Permalink
build: Export base Transport class in internal package
Browse files Browse the repository at this point in the history
  • Loading branch information
delucis committed Sep 13, 2021
1 parent 039e64f commit ffec598
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/internal.ts
Expand Up @@ -10,5 +10,13 @@ import { InitializeGame } from '../src/core/initialize';
import { ProcessGameConfig } from '../src/core/game';
import { CreateGameReducer } from '../src/core/reducer';
import { Async, Sync } from '../src/server/db/base';
import { Transport } from '../src/client/transport/transport';

export { Async, Sync, ProcessGameConfig, InitializeGame, CreateGameReducer };
export {
Async,
Sync,
Transport,
ProcessGameConfig,
InitializeGame,
CreateGameReducer,
};

0 comments on commit ffec598

Please sign in to comment.