Skip to content

lspeasy / core/src / HoverParamsSchema

Variable: HoverParamsSchema

ts
const HoverParamsSchema: ZodObject<{
  position: ZodObject<{
     character: ZodNumber;
     line: ZodNumber;
  }, $strip>;
  textDocument: ZodObject<{
     uri: ZodString;
  }, $strip>;
  workDoneToken: ZodOptional<ZodUnion<readonly [ZodNumber, ZodString]>>;
}, $strip>;

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

Released under the MIT License.