feat(ttt): added draw status in ttt match history

This commit is contained in:
Maix0 2026-01-07 00:16:39 +01:00 committed by Maix0
parent 830f251537
commit f87a991441
7 changed files with 36 additions and 17 deletions

View file

@ -66,7 +66,8 @@ export interface TttHistory200ResponsePayloadDataInner {
export const TttHistory200ResponsePayloadDataInnerOutcomeEnum = {
WinX: 'winX',
WinO: 'winO',
Other: 'other'
Other: 'other',
Draw: 'draw'
} as const;
export type TttHistory200ResponsePayloadDataInnerOutcomeEnum = typeof TttHistory200ResponsePayloadDataInnerOutcomeEnum[keyof typeof TttHistory200ResponsePayloadDataInnerOutcomeEnum];