UNPKG

@ne1410s/griddler

Version:

Complete package for creating, sharing and solving griddler grids!

14 lines (13 loc) 403 B
import { PlainGrid } from '../models/grid'; /** The outcome of running a 'solve' grid method. */ export declare class SolveResult { readonly solved: boolean; readonly solvedMs: number; readonly grid: PlainGrid; readonly brokenGrid: PlainGrid; constructor(gridObject: PlainGrid, solved: boolean, solvedMs: number); } export interface HintResult { type: string; idx: number; }