diff --git a/src/@shared/src/database/mixin/tictactoe.ts b/src/@shared/src/database/mixin/tictactoe.ts index 8d83e0b..4d4cda8 100644 --- a/src/@shared/src/database/mixin/tictactoe.ts +++ b/src/@shared/src/database/mixin/tictactoe.ts @@ -3,8 +3,8 @@ import type { Database } from './_base'; // describe every function in the object export interface ITicTacToeDb extends Database { - normalFunction(id: TemplateId): TemplateData | undefined, - asyncFunction(id: TemplateId): Promise, + setGameOutcome(this: ITicTacToeDb, id: GameId): void, +// asyncFunction(id: TemplateId): Promise, }; export const TicTacToeImpl: Omit = {