Skip to content

Commit

Permalink
fix: type
Browse files Browse the repository at this point in the history
  • Loading branch information
izatop committed Aug 16, 2023
1 parent 5a0f44a commit 781a898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/unit/test/src/disposable/RunnableTarget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {Heartbeat, IRunnable} from "../../../src";

export class RunnableTarget implements IRunnable {
public getHeartbeat(): Heartbeat {
let timer: NodeJS.Timer | undefined;
let timer: NodeJS.Timeout | undefined;
const job = new Promise((resolve) => {
timer = setTimeout(resolve, 5000);
});
Expand Down

0 comments on commit 781a898

Please sign in to comment.