export GameState and GameResult types from game-host

This commit is contained in:
hyper 2026-04-23 15:36:25 +08:00
parent f5df1c26dc
commit 5c1ef232fd
1 changed files with 7 additions and 1 deletions

View File

@ -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";