@codingame/monaco-vscode-search-service-override 4.5.0 → 4.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1 -1
- package/package.json +2 -2
- package/search.d.ts +0 -12
package/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from '
|
|
1
|
+
export { default } from 'vscode/service-override/search';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-search-service-override",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -29,6 +29,6 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"vscode": "npm:@codingame/monaco-vscode-api@4.5.
|
|
32
|
+
"vscode": "npm:@codingame/monaco-vscode-api@4.5.1"
|
|
33
33
|
}
|
|
34
34
|
}
|
package/search.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { IEditorOverrideServices } from 'vscode/vscode/vs/editor/standalone/browser/standaloneServices';
|
|
2
|
-
|
|
3
|
-
interface SearchServiceOverrideProps {
|
|
4
|
-
/**
|
|
5
|
-
* Is an `HTMLFileSystemProvider` is used as only provider for the `file` scheme directly (without overlay)
|
|
6
|
-
* Enable this option to enable searching local filesystem
|
|
7
|
-
*/
|
|
8
|
-
useHtmlFileSystemProvider?: boolean;
|
|
9
|
-
}
|
|
10
|
-
declare function getServiceOverride({ useHtmlFileSystemProvider }?: SearchServiceOverrideProps): IEditorOverrideServices;
|
|
11
|
-
|
|
12
|
-
export { getServiceOverride as default };
|