Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Dima <alexdima@microsoft.com>2019-11-21 12:01:08 +0300
committerAlex Dima <alexdima@microsoft.com>2019-11-21 12:01:21 +0300
commitc2a19905fb4c5dbbd0427db34b167d3605cdf443 (patch)
tree89f820808c4f59a89c44c4ea9ffa383df0ebdb1a /src/typings
parent6ae16bde2ec8ce6fd242fc93cd003a5e58dd156d (diff)
Remove .d.ts from typings folder (#83421)
Diffstat (limited to 'src/typings')
-rw-r--r--src/typings/onigasm-umd.d.ts33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/typings/onigasm-umd.d.ts b/src/typings/onigasm-umd.d.ts
deleted file mode 100644
index 151cecebfdd..00000000000
--- a/src/typings/onigasm-umd.d.ts
+++ /dev/null
@@ -1,33 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
-
-declare module "onigasm-umd" {
-
- function loadWASM(data: string | ArrayBuffer): Promise<void>;
-
- class OnigString {
- constructor(content: string);
- readonly content: string;
- readonly dispose?: () => void;
- }
-
- class OnigScanner {
- constructor(patterns: string[]);
- findNextMatchSync(string: string | OnigString, startPosition: number): IOnigMatch;
- }
-
- export interface IOnigCaptureIndex {
- index: number
- start: number
- end: number
- length: number
- }
-
- export interface IOnigMatch {
- index: number
- captureIndices: IOnigCaptureIndex[]
- scanner: OnigScanner
- }
-} \ No newline at end of file