We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f15e85 + 40a2ac6 commit 6728f03Copy full SHA for 6728f03
index.d.ts
@@ -4,6 +4,13 @@ export type DoubledObjectWithKey<Key extends string> = {};
4
5
export type DoubledObject<Subject> = Subject;
6
7
+export interface TestdoubleConfig {
8
+ promiseConstructor?: any;
9
+ ignoreWarnings?: boolean;
10
+ suppressErrors?: boolean;
11
+}
12
+export function config(config: TestdoubleConfig): void;
13
+
14
declare function functionDouble(name?: string): TestDouble;
15
export { functionDouble as function };
16
0 commit comments