mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-15 10:58:31 -05:00
* Fix initial build breaks from 1.67 merge (#2514) * Update yarn lock files * Update build scripts * Fix tsconfig * Build breaks * WIP * Update yarn lock files * Misc breaks * Updates to package.json * Breaks * Update yarn * Fix breaks * Breaks * Build breaks * Breaks * Breaks * Breaks * Breaks * Breaks * Missing file * Breaks * Breaks * Breaks * Breaks * Breaks * Fix several runtime breaks (#2515) * Missing files * Runtime breaks * Fix proxy ordering issue * Remove commented code * Fix breaks with opening query editor * Fix post merge break * Updates related to setup build and other breaks (#2516) * Fix bundle build issues * Update distro * Fix distro merge and update build JS files * Disable pipeline steps * Remove stats call * Update license name * Make new RPM dependencies a warning * Fix extension manager version checks * Update JS file * Fix a few runtime breaks * Fixes * Fix runtime issues * Fix build breaks * Update notebook tests (part 1) * Fix broken tests * Linting errors * Fix hygiene * Disable lint rules * Bump distro * Turn off smoke tests * Disable integration tests * Remove failing "activate" test * Remove failed test assertion * Disable other broken test * Disable query history tests * Disable extension unit tests * Disable failing tasks
111 lines
4.7 KiB
Plaintext
111 lines
4.7 KiB
Plaintext
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
declare let MonacoEnvironment: monaco.Environment | undefined;
|
|
|
|
interface Window {
|
|
MonacoEnvironment?: monaco.Environment | undefined;
|
|
}
|
|
|
|
declare namespace monaco {
|
|
|
|
export type Thenable<T> = PromiseLike<T>;
|
|
|
|
export interface Environment {
|
|
globalAPI?: boolean;
|
|
baseUrl?: string;
|
|
getWorker?(workerId: string, label: string): Promise<Worker> | Worker;
|
|
getWorkerUrl?(workerId: string, label: string): string;
|
|
}
|
|
|
|
export interface IDisposable {
|
|
dispose(): void;
|
|
}
|
|
|
|
export interface IEvent<T> {
|
|
(listener: (e: T) => any, thisArg?: any): IDisposable;
|
|
}
|
|
|
|
/**
|
|
* A helper that allows to emit and listen to typed events
|
|
*/
|
|
export class Emitter<T> {
|
|
constructor();
|
|
readonly event: Event<T>;
|
|
fire(event: T): void;
|
|
dispose(): void;
|
|
}
|
|
|
|
#include(vs/platform/markers/common/markers): MarkerTag, MarkerSeverity
|
|
#include(vs/base/common/cancellation): CancellationTokenSource, CancellationToken
|
|
#include(vs/base/common/uri): URI, UriComponents
|
|
#include(vs/base/common/keyCodes): KeyCode
|
|
#include(vs/editor/common/services/editorBaseApi): KeyMod
|
|
#include(vs/base/common/htmlContent): IMarkdownString
|
|
#include(vs/base/browser/keyboardEvent): IKeyboardEvent
|
|
#include(vs/base/browser/mouseEvent): IMouseEvent
|
|
#include(vs/editor/common/editorCommon): IScrollEvent
|
|
#include(vs/editor/common/core/position): IPosition, Position
|
|
#include(vs/editor/common/core/range): IRange, Range
|
|
#include(vs/editor/common/core/selection): ISelection, Selection, SelectionDirection
|
|
#include(vs/editor/common/languages): Token
|
|
}
|
|
|
|
declare namespace monaco.editor {
|
|
#include(vs/editor/browser/widget/diffNavigator): IDiffNavigator
|
|
#includeAll(vs/editor/standalone/browser/standaloneEditor;languages.Token=>Token):
|
|
#include(vs/editor/standalone/common/standaloneTheme): BuiltinTheme, IStandaloneThemeData, IColors
|
|
#include(vs/editor/common/languages/supports/tokenization): ITokenThemeRule
|
|
#include(vs/editor/browser/services/webWorker): MonacoWebWorker, IWebWorkerOptions
|
|
#include(vs/editor/standalone/browser/standaloneCodeEditor): IActionDescriptor, IGlobalEditorOptions, IStandaloneEditorConstructionOptions, IStandaloneDiffEditorConstructionOptions, IStandaloneCodeEditor, IStandaloneDiffEditor
|
|
export interface ICommandHandler {
|
|
(...args: any[]): void;
|
|
}
|
|
#include(vs/platform/contextkey/common/contextkey): IContextKey
|
|
#include(vs/editor/standalone/browser/standaloneServices): IEditorOverrideServices
|
|
#include(vs/platform/markers/common/markers): IMarker, IMarkerData, IRelatedInformation
|
|
#include(vs/editor/standalone/browser/colorizer): IColorizerOptions, IColorizerElementOptions
|
|
#include(vs/base/common/scrollable): ScrollbarVisibility
|
|
#include(vs/platform/theme/common/themeService): ThemeColor
|
|
#include(vs/editor/common/core/editOperation): ISingleEditOperation
|
|
#include(vs/editor/common/core/wordHelper): IWordAtPosition
|
|
#includeAll(vs/editor/common/model): IScrollEvent
|
|
#include(vs/editor/common/diff/diffComputer): IChange, ICharChange, ILineChange
|
|
#include(vs/editor/common/core/dimension): IDimension
|
|
#includeAll(vs/editor/common/editorCommon): IScrollEvent
|
|
#includeAll(vs/editor/common/textModelEvents):
|
|
#includeAll(vs/editor/common/cursorEvents):
|
|
#include(vs/platform/accessibility/common/accessibility): AccessibilitySupport
|
|
#includeAll(vs/editor/common/config/editorOptions):
|
|
#include(vs/editor/browser/config/editorConfiguration): IEditorConstructionOptions
|
|
#includeAll(vs/editor/browser/editorBrowser;editorCommon.=>):
|
|
#include(vs/editor/common/config/fontInfo): FontInfo, BareFontInfo
|
|
|
|
//compatibility:
|
|
export type IReadOnlyModel = ITextModel;
|
|
export type IModel = ITextModel;
|
|
}
|
|
|
|
declare namespace monaco.languages {
|
|
|
|
#include(vs/base/common/glob): IRelativePattern
|
|
#include(vs/editor/common/languageSelector): LanguageSelector, LanguageFilter
|
|
#includeAll(vs/editor/standalone/browser/standaloneLanguages;languages.=>;editorCommon.=>editor.;model.=>editor.;IMarkerData=>editor.IMarkerData):
|
|
#includeAll(vs/editor/common/languages/languageConfiguration):
|
|
#includeAll(vs/editor/common/languages;IMarkerData=>editor.IMarkerData;ISingleEditOperation=>editor.ISingleEditOperation;model.=>editor.): Token
|
|
#include(vs/editor/common/languages/language): ILanguageExtensionPoint
|
|
#includeAll(vs/editor/standalone/common/monarch/monarchTypes):
|
|
|
|
}
|
|
|
|
declare namespace monaco.worker {
|
|
|
|
#include(vs/editor/common/model/mirrorTextModel): IMirrorTextModel
|
|
#includeAll(vs/editor/common/services/editorSimpleWorker;):
|
|
|
|
}
|
|
|
|
//dtsv=3
|