diff options
Diffstat (limited to 'src/types/guess.ts')
| -rw-r--r-- | src/types/guess.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/types/guess.ts b/src/types/guess.ts new file mode 100644 index 0000000..a84602d --- /dev/null +++ b/src/types/guess.ts @@ -0,0 +1,7 @@ +import { Song } from "./song"; + +export type GuessType = { + song: Song | undefined; + skipped: boolean; + isCorrect: boolean | undefined; +}; |
