@koine/next 2.0.0-beta.129 → 2.0.0-beta.130

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/typings.d.ts +2 -2
package/package.json CHANGED
@@ -2,9 +2,9 @@
2
2
  "name": "@koine/next",
3
3
  "sideEffects": false,
4
4
  "dependencies": {
5
- "@koine/browser": "2.0.0-beta.129",
6
- "@koine/utils": "2.0.0-beta.129",
7
- "@koine/i18n": "2.0.0-beta.129"
5
+ "@koine/browser": "2.0.0-beta.130",
6
+ "@koine/utils": "2.0.0-beta.130",
7
+ "@koine/i18n": "2.0.0-beta.130"
8
8
  },
9
9
  "peerDependencies": {
10
10
  "next": "^14.0.4",
@@ -64,5 +64,5 @@
64
64
  "module": "./index.esm.js",
65
65
  "main": "./index.cjs.js",
66
66
  "types": "./index.esm.d.ts",
67
- "version": "2.0.0-beta.129"
67
+ "version": "2.0.0-beta.130"
68
68
  }
package/typings.d.ts CHANGED
@@ -33,14 +33,14 @@ declare type NextPageDataStaticPaths<Params extends { [key: string]: any }> = (
33
33
  /**
34
34
  * [`next.js` pages router](https://nextjs.org/docs/pages) utility type
35
35
  */
36
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
36
+
37
37
  declare type NextPageDataStatic<P extends { [key: string]: any }> =
38
38
  import("next").GetStaticProps<P, import("querystring").ParsedUrlQuery>;
39
39
 
40
40
  /**
41
41
  * [`next.js` pages router](https://nextjs.org/docs/pages) utility type
42
42
  */
43
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
43
+
44
44
  declare type NextPageDataServer<P extends { [key: string]: any }> =
45
45
  import("next").GetServerSideProps<P, import("querystring").ParsedUrlQuery>;
46
46