diff --git a/docs/async-call-rpc.asynccalloptions.serializer.md b/docs/async-call-rpc.asynccalloptions.serializer.md index 2422778..110f22e 100644 --- a/docs/async-call-rpc.asynccalloptions.serializer.md +++ b/docs/async-call-rpc.asynccalloptions.serializer.md @@ -16,8 +16,6 @@ serializer?: Serialization; See [Serialization](./async-call-rpc.serialization.md). There is some built-in serializer: -- [NoSerialization](./async-call-rpc.noserialization.md) (Not doing anything to the message) - - [JSONSerialization](./async-call-rpc.jsonserialization.md) (Using JSON.parse/stringify in the backend) - [BSONSerialization](https://github.com/jack-works/async-call-rpc#web-deno-and-node-bson) (use the [bson](https://npmjs.org/bson) as the serializer) diff --git a/src/types.ts b/src/types.ts index f44f96f..a5071b7 100644 --- a/src/types.ts +++ b/src/types.ts @@ -125,13 +125,9 @@ export interface AsyncCallOptions { * See {@link Serialization}. * There is some built-in serializer: * - * - {@link NoSerialization} (Not doing anything to the message) - * * - {@link JSONSerialization} (Using JSON.parse/stringify in the backend) * * - {@link https://github.com/jack-works/async-call-rpc#web-deno-and-node-bson | BSONSerialization} (use the {@link https://npmjs.org/bson | bson} as the serializer) - * - * @defaultValue {@link NoSerialization} */ serializer?: Serialization /**