Skip to content

Commit 4ee7d5c

Browse files
committed
style(reactive-rpc): 💄 run Prettier
1 parent 2fcdf69 commit 4ee7d5c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/reactive-rpc/common/codec/RpcCodec.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ import type {JsonValueCodec} from '../../../json-pack/codecs/types';
44
import type {RpcMessageCodec} from './types';
55

66
export class RpcCodec {
7-
constructor(public readonly msg: RpcMessageCodec, public readonly req: JsonValueCodec, public readonly res: JsonValueCodec) {}
7+
constructor(
8+
public readonly msg: RpcMessageCodec,
9+
public readonly req: JsonValueCodec,
10+
public readonly res: JsonValueCodec,
11+
) {}
812

913
public specifier(): RpcSpecifier {
1014
const specifier = `rpc.${this.msg.id}.${this.req.id}` + (this.req.id !== this.res.id ? `-${this.res.id}` : '');

0 commit comments

Comments
 (0)