@candlerip/shared3 0.0.151 → 0.0.152

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.151",
3
+ "version": "0.0.152",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/index.js",
@@ -8,7 +8,7 @@ export type GetCountries = <T extends keyof TypeMap = never>(props?: {
8
8
  customError: CustomError;
9
9
  }>;
10
10
  type TypeMap = {
11
- countries: Country[] | null;
11
+ countries: Country[];
12
12
  countriesWithPersonsCount: Array<Country & {
13
13
  personsCount: number;
14
14
  }>;