Skip to content

Commit 612391c

Browse files
committed
remove string from method type
1 parent 60c878a commit 612391c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/wayfinder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export type QueryParams = Record<
99
| Record<string, string | number | boolean>
1010
>;
1111

12-
type Method = "get" | "post" | "put" | "delete" | "patch" | "head" | string;
12+
type Method = "get" | "post" | "put" | "delete" | "patch" | "head";
1313

1414
export type RouteDefinition<TMethod extends Method | Method[]> = {
1515
url: string;

0 commit comments

Comments
 (0)