blob: 4dc0ada8a9205cb70288c098ce5051406cee4647 [file] [edit]
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
declare module 'vscode' {
export class VerboseHover extends Hover {
canIncreaseVerbosity?: boolean;
canDecreaseVerbosity?: boolean;
constructor(
contents: MarkdownString | MarkedString | Array<MarkdownString | MarkedString>,
range?: Range,
canIncreaseVerbosity?: boolean,
canDecreaseVerbosity?: boolean,
);
}
export interface HoverContext {
readonly verbosityDelta?: number;
readonly previousHover?: Hover;
}
}