UNPKG
sudoku-gen
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Sudoku puzzle generator
github.com/petewritescode/sudoku-gen
petewritescode/sudoku-gen
sudoku-gen
/
dist
/
types
/
sudoku.type.d.ts
7 lines
(6 loc)
•
152 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Difficulty
}
from
'./difficulty.type'
;
export
declare
type
Sudoku
= {
puzzle
:
string
;
solution
:
string
;
difficulty
:
Difficulty
; };