Skip to content

lspeasy / core/src / InlayHintParamsSchema

Variable: InlayHintParamsSchema

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

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

Released under the MIT License.