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>;
}, $strip> = TextDocumentPositionParamsSchema;

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

Hover params

Released under the MIT License.