From 52e95a7cbb0ea787780359a532636eb4b456d121 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Mon, 7 Feb 2022 14:08:49 +0000 Subject: [PATCH] feat: better type checking --- types/util/assert.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/types/util/assert.d.ts b/types/util/assert.d.ts index ecdc77c..9884510 100644 --- a/types/util/assert.d.ts +++ b/types/util/assert.d.ts @@ -2,6 +2,7 @@ export declare function verify( condition: boolean, message?: string, code?: number, - exception?: unknown, - kwargs?: unknown + exception?: Error, + kwargs?: unknown, + safeKeys?: Array ): void;