Skip to content

Commit

Permalink
fix: types for describe, it
Browse files Browse the repository at this point in the history
  • Loading branch information
DudaGod committed May 29, 2024
1 parent e2d050c commit 42fcd1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions typings/api.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
type TestDefinition = import("../src/test-reader/test-object/types").TestDefinition;
type SuiteDefinition = import("../src/test-reader/test-object/types").SuiteDefinition;
type TestHookDefinition = import("../src/test-reader/test-object/types").TestHookDefinition;
type TestDefinition = import("../build/src/test-reader/test-object/types").TestDefinition;
type SuiteDefinition = import("../build/src/test-reader/test-object/types").SuiteDefinition;
type TestHookDefinition = import("../build/src/test-reader/test-object/types").TestHookDefinition;

declare const it: TestDefinition;
declare const describe: SuiteDefinition;
Expand Down

0 comments on commit 42fcd1c

Please sign in to comment.