Skip to content

lspeasy / core/src / unregisterCapabilityParamsSchema

Variable: unregisterCapabilityParamsSchema

ts
const unregisterCapabilityParamsSchema: ZodObject<{
  unregisterations: ZodArray<ZodObject<{
     id: ZodString;
     method: ZodString;
  }, $strip>>;
}, $strip>;

Defined in: packages/core/src/protocol/dynamic-registration.ts:67

Zod schema for validating client/unregisterCapability params.

Released under the MIT License.