From 742728b964fa1aad5869f0cf65163db3acf9de7f Mon Sep 17 00:00:00 2001 From: Daniel Rentz Date: Wed, 3 Jun 2026 14:48:12 +0200 Subject: [PATCH] fix: Change index.d.ts to export default class index.d.ts was missing an `export` statement, trying to import this modules in TS code causes compiler error. --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index c027e67..616b091 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,4 +1,4 @@ -declare class ExpectHelper { +export default class ExpectHelper { expectEqual(actualValue: any, expectedValue: any, customErrorMsg?: string): void; expectNotEqual(actualValue: any, expectedValue: any, customErrorMsg?: string): void; expectDeepEqual(actualValue: any, expectedValue: any, customErrorMsg?: string): void;