wordle-xdc/src/types.ts
2022-01-23 18:35:21 +08:00

7 lines
115 B
TypeScript

export const enum LetterState {
INITIAL = 0,
CORRECT = 'correct',
PRESENT = 'present',
ABSENT = 'absent'
}