This commit is contained in:
JOLIMAITRE Matthieu 2024-05-02 16:43:00 +02:00
parent 2fd201c380
commit 27abf00669
3 changed files with 13 additions and 19 deletions

View file

@ -1,8 +1,9 @@
export { Dict } from "./dict.ts";
export type { Guessing } from "./guesser/guesser.ts";
export type { LoggingStrategy } from "./runner.ts";
export { Dict } from "./dict.ts";
export { ExplorerGuesser } from "./guesser/explorer.ts";
export { ReducingGuesser } from "./guesser/reducing.ts";
export { Simulator } from "./game/simulator.ts";
export { ManualProxy } from "./game/proxy.ts";
export { Runner, TableLogging, VerboseLogging } from "./runner.ts";
export type { LoggingStrategy } from "./runner.ts";