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:
authorRobo <hop2deep@gmail.com>2019-11-07 20:45:38 +0300
committerGitHub <noreply@github.com>2019-11-07 20:45:38 +0300
commitd1684d213348031d6ae75d16392a2098923f8bca (patch)
tree714a02fdf41fe24e6325a62dad469fb1835629c0 /src/typings
parent9935244a6a48fe2d61a18a71fea133112411a316 (diff)
chore: bump vscode-nsfw@1.2.8 (#84139)
Diffstat (limited to 'src/typings')
-rw-r--r--src/typings/nsfw.d.ts41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/typings/nsfw.d.ts b/src/typings/nsfw.d.ts
deleted file mode 100644
index f8bb423a2f8..00000000000
--- a/src/typings/nsfw.d.ts
+++ /dev/null
@@ -1,41 +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 'nsfw' {
- interface NsfwWatcher {
- start(): any;
- stop(): any;
- }
-
- interface NsfwWatchingPromise {
- then(): void;
- }
-
- interface NsfwStartWatchingPromise {
- then(fn: (watcher: NsfwWatcher) => void): NsfwWatchingPromise;
- }
-
- interface NsfwEvent {
- action: number;
- directory: string;
- file?: string;
- newFile?: string;
- newDirectory?: string;
- oldFile?: string;
- }
-
- interface NsfwFunction {
- (dir: string, eventHandler: (events: NsfwEvent[]) => void, options?: any): NsfwStartWatchingPromise;
- actions: {
- CREATED: number;
- DELETED: number;
- MODIFIED: number;
- RENAMED: number;
- }
- }
-
- var nsfw: NsfwFunction;
- export = nsfw;
-}