Skip to content

lspeasy / core/src / DocumentHighlightParamsSchema

Variable: DocumentHighlightParamsSchema

ts
const DocumentHighlightParamsSchema: ZodObject<{
  partialResultToken: ZodOptional<ZodUnion<readonly [ZodNumber, ZodString]>>;
  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:1915

Released under the MIT License.