|
|
|
@ -8,9 +8,9 @@
|
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
declare module monaco {
|
|
|
|
|
declare namespace monaco {
|
|
|
|
|
|
|
|
|
|
type Thenable<T> = PromiseLike<T>;
|
|
|
|
|
export type Thenable<T> = PromiseLike<T>;
|
|
|
|
|
|
|
|
|
|
export interface IDisposable {
|
|
|
|
|
dispose(): void;
|
|
|
|
@ -761,9 +761,9 @@ declare module monaco {
|
|
|
|
|
constructor(offset: number, type: string, language: string);
|
|
|
|
|
toString(): string;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
declare module monaco.editor {
|
|
|
|
|
|
|
|
|
|
namespace editor {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -3901,7 +3901,7 @@ declare module monaco.editor {
|
|
|
|
|
export type IModel = ITextModel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
declare module monaco.languages {
|
|
|
|
|
namespace languages {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -5124,7 +5124,7 @@ declare module monaco.languages {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
declare module monaco.worker {
|
|
|
|
|
namespace worker {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export interface IMirrorModel {
|
|
|
|
@ -5142,8 +5142,9 @@ declare module monaco.worker {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
declare module monaco.languages.typescript {
|
|
|
|
|
declare namespace monaco.languages.typescript {
|
|
|
|
|
|
|
|
|
|
enum ModuleKind {
|
|
|
|
|
None = 0,
|
|
|
|
@ -5299,7 +5300,7 @@ declare module monaco.languages.typescript {
|
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
declare module monaco.languages.css {
|
|
|
|
|
declare namespace monaco.languages.css {
|
|
|
|
|
export interface DiagnosticsOptions {
|
|
|
|
|
readonly validate?: boolean;
|
|
|
|
|
readonly lint?: {
|
|
|
|
@ -5339,7 +5340,7 @@ declare module monaco.languages.css {
|
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
declare module monaco.languages.json {
|
|
|
|
|
declare namespace monaco.languages.json {
|
|
|
|
|
export interface DiagnosticsOptions {
|
|
|
|
|
/**
|
|
|
|
|
* If set, the validator will be enabled and perform syntax validation as well as schema based validation.
|
|
|
|
@ -5381,7 +5382,7 @@ declare module monaco.languages.json {
|
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
declare module monaco.languages.html {
|
|
|
|
|
declare namespace monaco.languages.html {
|
|
|
|
|
export interface HTMLFormatConfiguration {
|
|
|
|
|
readonly tabSize: number;
|
|
|
|
|
readonly insertSpaces: boolean;
|
|
|
|
|