Skip to content

Commit

Permalink
Add missing fields to EntryRoute (#8248)
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 authored Dec 8, 2023
1 parent c6993cf commit 9faaba5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/short-mayflies-stare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@remix-run/server-runtime": patch
---

[REMOVE] Add missing `hasClientAction`/`hasClientLoader` to `EntryRoute` type
2 changes: 2 additions & 0 deletions packages/remix-server-runtime/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ export interface Route {
export interface EntryRoute extends Route {
hasAction: boolean;
hasLoader: boolean;
hasClientAction: boolean;
hasClientLoader: boolean;
hasErrorBoundary: boolean;
imports?: string[];
css?: string[];
Expand Down

0 comments on commit 9faaba5

Please sign in to comment.