chore(eslint): fixed eslint rules
This commit is contained in:
parent
2bf5e6e700
commit
830f251537
2 changed files with 13 additions and 13 deletions
|
|
@ -53,7 +53,7 @@ export const TicTacToeImpl: Omit<ITicTacToeDb, keyof Database> = {
|
||||||
if (isNullish(g.nameO) || isNullish(g.nameO)) return undefined;
|
if (isNullish(g.nameO) || isNullish(g.nameO)) return undefined;
|
||||||
return g as TicTacToeGame & { nameX: string, nameO: string };
|
return g as TicTacToeGame & { nameX: string, nameO: string };
|
||||||
}).filter(v => !isNullish(v));
|
}).filter(v => !isNullish(v));
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export type TTTGameId = UUID & { readonly __uuid: unique symbol };
|
export type TTTGameId = UUID & { readonly __uuid: unique symbol };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue