Skip to content

Commit abf9f05

Browse files
committedJan 30, 2025·
chore(start-client): remove unused types
1 parent e6aed4c commit abf9f05

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed
 

Diff for: ‎packages/start-client/src/index.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ export { renderRsc } from './renderRSC'
7171
export { useServerFn } from './useServerFn'
7272
export { serverFnFetcher } from './serverFnFetcher'
7373
export {
74-
type DehydratedRouterState,
75-
type DehydratedRouteMatch,
7674
type DehydratedRouter,
7775
type ClientExtractedBaseEntry,
7876
type StartSsrGlobal,

Diff for: ‎packages/start-client/src/ssr-client.tsx

-9
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,6 @@ export interface ResolvePromiseState {
7373
promiseState: DeferredPromiseState<any>
7474
}
7575

76-
export interface DehydratedRouterState {
77-
dehydratedMatches: Array<DehydratedRouteMatch>
78-
}
79-
80-
export type DehydratedRouteMatch = Pick<
81-
MakeRouteMatch,
82-
'id' | 'status' | 'updatedAt' | 'loaderData'
83-
>
84-
8576
export interface DehydratedRouter {
8677
manifest: Manifest | undefined
8778
dehydratedData: any

0 commit comments

Comments
 (0)
Please sign in to comment.