lspeasy / core/src / CompletionParamsSchema
Variable: CompletionParamsSchema
ts
const CompletionParamsSchema: ZodObject<{
context: ZodOptional<ZodObject<{
triggerCharacter: ZodOptional<ZodString>;
triggerKind: ZodUnion<readonly [ZodLiteral<1>, ZodLiteral<2>, ZodLiteral<3>]>;
}, $strip>>;
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:1774