export GameState and GameResult types from game-host
This commit is contained in:
parent
f5df1c26dc
commit
5c1ef232fd
|
|
@ -7,7 +7,13 @@
|
||||||
export type { IGameContext } from "./core/game";
|
export type { IGameContext } from "./core/game";
|
||||||
export { createPromptDef } from "./core/game";
|
export { createPromptDef } from "./core/game";
|
||||||
|
|
||||||
export type { GameHost, GameHostStatus, GameModule } from "./core/game-host";
|
export type {
|
||||||
|
GameHost,
|
||||||
|
GameHostStatus,
|
||||||
|
GameModule,
|
||||||
|
GameState,
|
||||||
|
GameResult,
|
||||||
|
} from "./core/game-host";
|
||||||
export { createGameHost } from "./core/game-host";
|
export { createGameHost } from "./core/game-host";
|
||||||
|
|
||||||
export type { Part } from "./core/part";
|
export type { Part } from "./core/part";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue