UNPKG

yaml-language-server

Version:
19 lines (18 loc) 548 B
export interface FoldingRangesContext { /** * The maximal number of ranges returned. */ rangeLimit?: number; /** * Called when the result was cropped. */ onRangeLimitExceeded?: (uri: string) => void; /** * If set, the client signals that it only supports folding complete lines. If set, client will * ignore specified `startCharacter` and `endCharacter` properties in a FoldingRange. */ lineFoldingOnly?: boolean; } export declare type SchemaVersions = { [version: string]: string; };