Skip to content

Commit bdd211a

Browse files
authored
fix(server): cannot infer without reference issue (#321)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Chore** - Enhanced our public API with additional type definitions, expanding integration options and strengthening the overall development experience without altering existing functionality. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent f47352c commit bdd211a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/server/src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export * from './router-hidden'
2121
export * from './router-utils'
2222

2323
export { isDefinedError, ORPCError, safe } from '@orpc/client'
24-
export type { HTTPMethod, HTTPPath } from '@orpc/client'
24+
export type { ClientContext, HTTPMethod, HTTPPath } from '@orpc/client'
2525
export { eventIterator, type, ValidationError } from '@orpc/contract'
2626
export type {
2727
ContractProcedure,
@@ -38,6 +38,7 @@ export type {
3838
Route,
3939
Schema,
4040
} from '@orpc/contract'
41+
export type { IntersectPick } from '@orpc/shared'
4142
export { onError, onFinish, onStart, onSuccess } from '@orpc/shared'
4243
export type { Registry, ThrowableError } from '@orpc/shared'
4344
export { getEventMeta, withEventMeta } from '@orpc/standard-server'

0 commit comments

Comments
 (0)