Skip to content

Commit

Permalink
fix: fix RailsContext type
Browse files Browse the repository at this point in the history
  • Loading branch information
kotarella1110 committed Nov 20, 2023
1 parent 8897fcc commit 0917fc2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions node_package/src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@ export interface RailsContext {
rorPro: boolean;
rorProVersion?: string;
serverSide: boolean;
originalUrl: string;
href: string;
location: string;
scheme: string;
host: string;
port: string;
port: number | null;
pathname: string;
search: string;
search: string | null;
httpAcceptLanguage: string;
}

Expand Down

0 comments on commit 0917fc2

Please sign in to comment.