summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@protobufjs/aspromise/index.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend-old/node_modules/@protobufjs/aspromise/index.d.ts')
-rw-r--r--frontend-old/node_modules/@protobufjs/aspromise/index.d.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/frontend-old/node_modules/@protobufjs/aspromise/index.d.ts b/frontend-old/node_modules/@protobufjs/aspromise/index.d.ts
deleted file mode 100644
index afbd89a..0000000
--- a/frontend-old/node_modules/@protobufjs/aspromise/index.d.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-export = asPromise;
-
-type asPromiseCallback = (error: Error | null, ...params: any[]) => {};
-
-/**
- * Returns a promise from a node-style callback function.
- * @memberof util
- * @param {asPromiseCallback} fn Function to call
- * @param {*} ctx Function context
- * @param {...*} params Function arguments
- * @returns {Promise<*>} Promisified function
- */
-declare function asPromise(fn: asPromiseCallback, ctx: any, ...params: any[]): Promise<any>;