Fix patch

This commit is contained in:
Michael Telatynski 2023-07-18 09:14:04 +01:00
parent 03414dbe28
commit 3b208a3723
No known key found for this signature in database
GPG Key ID: A2B008A5F49F5D0D

View File

@ -1,11 +1,12 @@
diff --git a/node_modules/conf/dist/source/index.d.ts b/node_modules/conf/dist/source/index.d.ts diff --git a/node_modules/conf/dist/source/index.d.ts b/node_modules/conf/dist/source/index.d.ts
index 70d6dd0..fb23a4e 100644 index 70d6dd0..6b552f3 100644
--- a/node_modules/conf/dist/source/index.d.ts --- a/node_modules/conf/dist/source/index.d.ts
+++ b/node_modules/conf/dist/source/index.d.ts +++ b/node_modules/conf/dist/source/index.d.ts
@@ -44,6 +44,10 @@ declare class Conf<T extends Record<string, any> = Record<string, unknown>> impl @@ -44,6 +44,7 @@ declare class Conf<T extends Record<string, any> = Record<string, unknown>> impl
@param key - The key of the item to delete. @param key - The key of the item to delete.
*/ */
delete<Key extends keyof T>(key: Key): void; delete<Key extends keyof T>(key: Key): void;
+ delete(key: string): void; + delete(key: string): void;
/** /**
Delete all items. Delete all items.