UNPKG

sudoku-gen

Version:
7 lines (6 loc) 152 B
import { Difficulty } from './difficulty.type'; export declare type Sudoku = { puzzle: string; solution: string; difficulty: Difficulty; };