sekur-chat/patches/conf+10.2.0.patch

13 lines
493 B
Diff
Raw Normal View History

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