Skip to content

lspeasy / core/src / CodeLensParamsSchema

Variable: CodeLensParamsSchema

ts
const CodeLensParamsSchema: ZodObject<{
  partialResultToken: ZodOptional<ZodUnion<readonly [ZodNumber, ZodString]>>;
  textDocument: ZodObject<{
     uri: ZodString;
  }, $strip>;
  workDoneToken: ZodOptional<ZodUnion<readonly [ZodNumber, ZodString]>>;
}, $strip>;

Defined in: packages/core/src/protocol/schemas.ts:2010

Released under the MIT License.