Skip to content

Commit

Permalink
Acknowledge that there's no issue (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
parzhitsky committed May 24, 2020
1 parent b97b2a1 commit 4eb1f8b
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/typings/retryer.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
// TODO: deprecate the whole separate '/typings' thing,
// export types from main file as much as possible
import type { Delay } from "../delays";

export default interface Retryer {
(): void;

readonly count: number;

after(delay: import("../delays").Delay): void;

after(delay: Delay): void;
setCount(newValue: number): void;

cancel(): void;
}

0 comments on commit 4eb1f8b

Please sign in to comment.