@scrabble-solver/configs 2.15.11 → 2.15.13

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.
@@ -1,2 +1,2 @@
1
- import { Config, Game, Locale } from '@scrabble-solver/types';
1
+ import { type Config, type Game, type Locale } from '@scrabble-solver/types';
2
2
  export declare const getConfig: (game: Game, locale: Locale) => Config;
@@ -1,2 +1,2 @@
1
- import { Game, Locale } from '@scrabble-solver/types';
1
+ import { type Game, type Locale } from '@scrabble-solver/types';
2
2
  export declare const hasConfig: (game: Game, locale: Locale) => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrabble-solver/configs",
3
- "version": "2.15.11",
3
+ "version": "2.15.13",
4
4
  "description": "Scrabble Solver 2 - Configs",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -23,8 +23,8 @@
23
23
  "clean": "rimraf build/"
24
24
  },
25
25
  "dependencies": {
26
- "@scrabble-solver/constants": "^2.15.11",
27
- "@scrabble-solver/types": "^2.15.11"
26
+ "@scrabble-solver/constants": "^2.15.13",
27
+ "@scrabble-solver/types": "^2.15.13"
28
28
  },
29
- "gitHead": "4fa527098d5e67120adb7964777c044a09378332"
29
+ "gitHead": "fd3e02f7051acdb8cc6dd138a959679bc00f1ed6"
30
30
  }
package/src/getConfig.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Config, Game, Locale } from '@scrabble-solver/types';
1
+ import { type Config, type Game, type Locale } from '@scrabble-solver/types';
2
2
 
3
3
  import * as languages from './languages';
4
4
 
package/src/hasConfig.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Game, Locale } from '@scrabble-solver/types';
1
+ import { type Game, type Locale } from '@scrabble-solver/types';
2
2
 
3
3
  import * as languages from './languages';
4
4