proto-sudoku-wc 0.0.548 → 0.0.549
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/utils/types.d.ts +16 -1
- package/package.json +1 -1
@@ -1,3 +1,18 @@
|
|
1
|
+
declare type PuzzleApiData = {
|
2
|
+
metrics: {
|
3
|
+
counts: {
|
4
|
+
blanks: number;
|
5
|
+
clues: number;
|
6
|
+
};
|
7
|
+
nanos: {
|
8
|
+
generate: number;
|
9
|
+
solve: number;
|
10
|
+
};
|
11
|
+
};
|
12
|
+
puzzle: string;
|
13
|
+
ref: string;
|
14
|
+
tag: string;
|
15
|
+
};
|
1
16
|
declare type PuzzleCell = {
|
2
17
|
key: string;
|
3
18
|
value: string;
|
@@ -34,5 +49,5 @@ declare type ComputeLocsFn = (index: number, row: number, column: number, box: n
|
|
34
49
|
declare type ComputeKeysFn = (locs: number[]) => string[];
|
35
50
|
declare type GeometryFn = (index: number, row: number, column: number, box: number) => void;
|
36
51
|
declare type InputsFn = (list: PuzzleCell[]) => void;
|
37
|
-
export type { AppStore, IconProps, GeoMap, PuzzleCell, PuzzleData, VoidFn, ComputeBoxFn, ComputeLocsFn, ComputeKeysFn, GeometryFn, InputsFn, };
|
52
|
+
export type { AppStore, IconProps, GeoMap, PuzzleApiData, PuzzleCell, PuzzleData, VoidFn, ComputeBoxFn, ComputeLocsFn, ComputeKeysFn, GeometryFn, InputsFn, };
|
38
53
|
export default AppStore;
|