@scrabble-solver/types 2.13.5-alpha.0 → 2.13.5-alpha.1
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/build/ShowCoordinates.d.ts +7 -0
- package/build/ShowCoordinates.js +2 -0
- package/build/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/ShowCoordinates.ts +8 -0
- package/src/index.ts +1 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 'original' means columns have letters and rows have numbers
|
|
3
|
+
* 'alternative' means columns have numbers and rows have letters
|
|
4
|
+
* 'hidden' means coordinates won't be shown
|
|
5
|
+
*/
|
|
6
|
+
type ShowCoordinates = 'original' | 'alternative' | 'hidden';
|
|
7
|
+
export default ShowCoordinates;
|
package/build/index.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export { default as Pattern } from './Pattern';
|
|
|
19
19
|
export { default as PatternJson } from './PatternJson';
|
|
20
20
|
export { default as Result } from './Result';
|
|
21
21
|
export { default as ResultJson } from './ResultJson';
|
|
22
|
+
export { default as ShowCoordinates } from './ShowCoordinates';
|
|
22
23
|
export { default as Tile } from './Tile';
|
|
23
24
|
export { default as TileConfig } from './TileConfig';
|
|
24
25
|
export { default as TileJson, isTileJson } from './TileJson';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scrabble-solver/types",
|
|
3
|
-
"version": "2.13.5-alpha.
|
|
3
|
+
"version": "2.13.5-alpha.1",
|
|
4
4
|
"description": "Scrabble Solver 2 - Types",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"clean": "rimraf build/"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@scrabble-solver/constants": "^2.13.5-alpha.
|
|
26
|
+
"@scrabble-solver/constants": "^2.13.5-alpha.1"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "0843db4c5016829979718054193926bf71d67038"
|
|
29
29
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 'original' means columns have letters and rows have numbers
|
|
3
|
+
* 'alternative' means columns have numbers and rows have letters
|
|
4
|
+
* 'hidden' means coordinates won't be shown
|
|
5
|
+
*/
|
|
6
|
+
type ShowCoordinates = 'original' | 'alternative' | 'hidden';
|
|
7
|
+
|
|
8
|
+
export default ShowCoordinates;
|
package/src/index.ts
CHANGED
|
@@ -19,6 +19,7 @@ export { default as Pattern } from './Pattern';
|
|
|
19
19
|
export { default as PatternJson } from './PatternJson';
|
|
20
20
|
export { default as Result } from './Result';
|
|
21
21
|
export { default as ResultJson } from './ResultJson';
|
|
22
|
+
export { default as ShowCoordinates } from './ShowCoordinates';
|
|
22
23
|
export { default as Tile } from './Tile';
|
|
23
24
|
export { default as TileConfig } from './TileConfig';
|
|
24
25
|
export { default as TileJson, isTileJson } from './TileJson';
|