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
/
utils
/
get-sudoku.util.d.ts
4 lines
(3 loc)
•
183 B
TypeScript
View Raw
1
2
3
4
import
{
Difficulty
}
from
'../types/difficulty.type'
;
import
{
Sudoku
}
from
'../types/sudoku.type'
;
export
declare
const
getSudoku
:
(
difficulty
?:
Difficulty
|
undefined
) =>
Sudoku
;