Skip to content

Commit

Permalink
Publish ambient types
Browse files Browse the repository at this point in the history
  • Loading branch information
gitKrystan committed Jan 4, 2023
1 parent 2e12341 commit 284e7d9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions test-support/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
export default class TestLoader {
static load(): void;
shouldLoadModule(moduleName: string): boolean;
listModules(): string[];
listTestModules(): string[];
loadModules(): void;
require(moduleName: string): void;
unsee(moduleName: string): void;
moduleLoadFailure(moduleName: string, error: unknown): void;
}

export function addModuleExcludeMatcher(
matcher: (moduleName: string) => boolean
): void;

export function addModuleIncludeMatcher(
matcher: (moduleName: string) => boolean
): void;

0 comments on commit 284e7d9

Please sign in to comment.