UNPKG

sudoku-gen

Version:
4 lines (3 loc) 183 B
import { Difficulty } from '../types/difficulty.type'; import { Sudoku } from '../types/sudoku.type'; export declare const getSudoku: (difficulty?: Difficulty | undefined) => Sudoku;