@modern-js/types
Advanced tools
Comparing version 2.64.1 to 2.64.2
@@ -18,3 +18,3 @@ { | ||
], | ||
"version": "2.64.1", | ||
"version": "2.64.2", | ||
"types": "./index.d.ts", | ||
@@ -39,2 +39,5 @@ "exports": { | ||
"./packages/hoist-non-react-statics.d.ts" | ||
], | ||
"server": [ | ||
"./server/index.d.ts" | ||
] | ||
@@ -50,4 +53,4 @@ } | ||
"type-fest": "2.15.0", | ||
"@scripts/build": "2.64.1", | ||
"@scripts/jest-config": "2.64.1" | ||
"@scripts/build": "2.64.2", | ||
"@scripts/jest-config": "2.64.2" | ||
}, | ||
@@ -54,0 +57,0 @@ "sideEffects": false, |
@@ -7,3 +7,3 @@ import type { | ||
import type { ServerRoute } from './route'; | ||
import type { Reporter } from './utils'; | ||
import type { Logger, Metrics, Reporter } from './utils'; | ||
@@ -10,0 +10,0 @@ export type CookieAPI = { |
@@ -9,1 +9,2 @@ export * from './context'; | ||
export * from './monitor'; | ||
export * from './rsc'; |
@@ -12,2 +12,4 @@ export interface ServerRoute { | ||
isSSR?: boolean; | ||
// if route is rsc page | ||
isRSC?: boolean; | ||
// if route is stream response | ||
@@ -14,0 +16,0 @@ isStream?: boolean; |
27327
18
849