We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67a7211 commit b816a3fCopy full SHA for b816a3f
build/monaco/monaco.usage.recipe
@@ -1,6 +1,8 @@
1
2
// This file is adding references to various symbols which should not be removed via tree shaking
3
4
+import { IObservable } from './vs/base/common/observable';
5
+
6
import { ServiceIdentifier } from './vs/platform/instantiation/common/instantiation';
7
import { create as create1 } from './vs/base/common/worker/simpleWorker';
8
import { create as create2 } from './vs/editor/common/services/editorSimpleWorker';
@@ -32,4 +34,7 @@ import * as editorAPI from './vs/editor/editor.api';
32
34
a = editorAPI.Token;
33
35
a = editorAPI.editor;
36
a = editorAPI.languages;
37
38
+ const o: IObservable<number, number> = null!;
39
+ o.TChange;
40
})();
0 commit comments