Skip to content

Commit 1647492

Browse files
authored
Merge pull request #2 from triyanox/fix/fix-path-type
Fix/fix path type
2 parents 28fbc10 + e8b833f commit 1647492

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @triyanox/next-middleware
22

3+
## 0.1.3
4+
5+
### Patch Changes
6+
7+
- fix the `Path<T>` for `RuleFunction`
8+
39
## 0.1.2
410

511
### Patch Changes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@triyanox/next-middleware",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "The cleanest way to protect your Next.js routes with a middleware",
55
"license": "MIT",
66
"publishConfig": {

src/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type ParamsObject<R extends string> =
3333
type RuleFunction<
3434
T,
3535
RS extends Routes,
36-
R extends keyof RS & string = keyof RS & string,
36+
R extends Path<keyof RS & string> = keyof RS & string,
3737
> = (options: {
3838
data: T;
3939
path: R;

0 commit comments

Comments
 (0)