Skip to content

lspeasy / core/src / DidOpenTextDocumentParamsSchema

Variable: DidOpenTextDocumentParamsSchema

ts
const DidOpenTextDocumentParamsSchema: ZodObject<{
  textDocument: ZodObject<{
     languageId: ZodString;
     text: ZodString;
     uri: ZodString;
     version: ZodNumber;
  }, $strip>;
}, $strip>;

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

Did open text document params

Released under the MIT License.