Skip to content

Commit e4b50c8

Browse files
committed
chore: update
1 parent a25d9f5 commit e4b50c8

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

packages/devframe/src/rpc/wire-codec.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { strictJsonStringify, STRUCTURED_CLONE_PREFIX } from './serialization'
66
* The per-connection `serialize`/`deserialize` pair for a live RPC wire.
77
*
88
* @internal
9-
* implementations; not part of the stable public API.
109
*/
1110
export interface RpcWireCodec {
1211
serialize: (msg: any) => string
@@ -25,7 +24,6 @@ const EMPTY_WIRE_DEFS: ReadonlyMap<string, Pick<RpcFunctionDefinitionAny, 'jsonS
2524
* don't collide across connections.
2625
*
2726
* @internal
28-
* implementations; not part of the stable public API.
2927
*/
3028
export function createRpcWireCodec(
3129
definitions: ReadonlyMap<string, Pick<RpcFunctionDefinitionAny, 'jsonSerializable'>> = EMPTY_WIRE_DEFS,
@@ -72,7 +70,6 @@ export function createRpcWireCodec(
7270
* handed to birpc proper.
7371
*
7472
* @internal
75-
* implementations; not part of the stable public API.
7673
*/
7774
export function peekRpcWireFrame(raw: string): { t?: string, i?: string } {
7875
try {

0 commit comments

Comments
 (0)