We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 28fbc10 + e8b833f commit 1647492Copy full SHA for 1647492
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# @triyanox/next-middleware
2
3
+## 0.1.3
4
+
5
+### Patch Changes
6
7
+- fix the `Path<T>` for `RuleFunction`
8
9
## 0.1.2
10
11
### Patch Changes
package.json
@@ -1,6 +1,6 @@
{
"name": "@triyanox/next-middleware",
- "version": "0.1.2",
+ "version": "0.1.3",
"description": "The cleanest way to protect your Next.js routes with a middleware",
"license": "MIT",
"publishConfig": {
src/types.ts
@@ -33,7 +33,7 @@ type ParamsObject<R extends string> =
33
type RuleFunction<
34
T,
35
RS extends Routes,
36
- R extends keyof RS & string = keyof RS & string,
+ R extends Path<keyof RS & string> = keyof RS & string,
37
> = (options: {
38
data: T;
39
path: R;
0 commit comments