mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-23 00:22:56 +01:00
fix typo
This commit is contained in:
parent
bdc9560718
commit
de8bd2ba4f
1 changed files with 9 additions and 9 deletions
18
src/monaco.d.ts
vendored
18
src/monaco.d.ts
vendored
|
|
@ -38,47 +38,47 @@ declare module monaco.languages.json {
|
||||||
|
|
||||||
export interface ModeConfiguration {
|
export interface ModeConfiguration {
|
||||||
/**
|
/**
|
||||||
* Defines wheter the built-in documentFormattingEdit provider is enabled.
|
* Defines whether the built-in documentFormattingEdit provider is enabled.
|
||||||
*/
|
*/
|
||||||
readonly documentFormattingEdits?: boolean;
|
readonly documentFormattingEdits?: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines wheter the built-in documentRangeFormattingEdit provider is enabled.
|
* Defines whether the built-in documentRangeFormattingEdit provider is enabled.
|
||||||
*/
|
*/
|
||||||
readonly documentRangeFormattingEdits?: boolean;
|
readonly documentRangeFormattingEdits?: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines wheter the built-in completionItemProvider is enabled.
|
* Defines whether the built-in completionItemProvider is enabled.
|
||||||
*/
|
*/
|
||||||
readonly completionItems?: boolean;
|
readonly completionItems?: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines wheter the built-in hoverProvider is enabled.
|
* Defines whether the built-in hoverProvider is enabled.
|
||||||
*/
|
*/
|
||||||
readonly hovers?: boolean;
|
readonly hovers?: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines wheter the built-in documentSymbolProvider is enabled.
|
* Defines whether the built-in documentSymbolProvider is enabled.
|
||||||
*/
|
*/
|
||||||
readonly documentSymbols?: boolean;
|
readonly documentSymbols?: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines wheter the built-in tokens provider is enabled.
|
* Defines whether the built-in tokens provider is enabled.
|
||||||
*/
|
*/
|
||||||
readonly tokens?: boolean;
|
readonly tokens?: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines wheter the built-in color provider is enabled.
|
* Defines whether the built-in color provider is enabled.
|
||||||
*/
|
*/
|
||||||
readonly colors?: boolean;
|
readonly colors?: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines wheter the built-in foldingRange provider is enabled.
|
* Defines whether the built-in foldingRange provider is enabled.
|
||||||
*/
|
*/
|
||||||
readonly foldingRanges?: boolean;
|
readonly foldingRanges?: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines wheter the built-in diagnostic provider is enabled.
|
* Defines whether the built-in diagnostic provider is enabled.
|
||||||
*/
|
*/
|
||||||
readonly diagnostics?: boolean;
|
readonly diagnostics?: boolean;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue