Skip to content

Commit

Permalink
Remove comments with wrong description
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandru Savin committed Oct 9, 2020
1 parent 47e4e0a commit c4bfb06
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions index.d.ts
Expand Up @@ -7,22 +7,10 @@ declare global {
}

interface Assertion {
/**
* true if the spy was called at least once.
*/
requested: Assertion;
/**
* @param count The number of recorded calls.
*/
requestedWith(body: any): Assertion;
/**
* true if the spy was called exactly once.
*/
requestedWithHeaders(headers: object): Assertion;
/**
* true if the spy was called exactly twice.
*/
requestedWithHeadersMatch(headers: object): Assertion;
requestedWithHeaders(headers: object): Promise<Assertion>;
requestedWithHeadersMatch(headers: object): Promise<Assertion>;
}
}
}
Expand Down

0 comments on commit c4bfb06

Please sign in to comment.