aboutsummaryrefslogtreecommitdiffstats
path: root/backend/node_modules/set-function-length/index.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'backend/node_modules/set-function-length/index.d.ts')
-rw-r--r--backend/node_modules/set-function-length/index.d.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/backend/node_modules/set-function-length/index.d.ts b/backend/node_modules/set-function-length/index.d.ts
new file mode 100644
index 0000000..0451ecd
--- /dev/null
+++ b/backend/node_modules/set-function-length/index.d.ts
@@ -0,0 +1,7 @@
+declare namespace setFunctionLength {
+ type Func = (...args: unknown[]) => unknown;
+}
+
+declare function setFunctionLength<T extends setFunctionLength.Func = setFunctionLength.Func>(fn: T, length: number, loose?: boolean): T;
+
+export = setFunctionLength; \ No newline at end of file