Skip to content

Commit 9151cec

Browse files
committed
stuff master needs
1 parent b7d9e3f commit 9151cec

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export interface Explanation {
2929
callCount: number;
3030
calls: Call[];
3131
description: string;
32+
isTestDouble: boolean;
3233
}
3334

3435
export interface Matchers {

test/safe/typescript-typings.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export = {
2727
if (eval('typeof Proxy') !== 'undefined') { // eslint-disable-line
2828
class Bear { sleep () {} }
2929

30-
const FakeBear = td.constructor<Class>(Bear)
30+
const FakeBear = td.constructor<Bear>(Bear)
3131

3232
assert.equal(td.explain(FakeBear.prototype.sleep).isTestDouble, true)
3333

0 commit comments

Comments
 (0)