manu-sapiens's picture
removed symlink and replaced with a watcher process
2b24a67
raw
history blame contribute delete
112 Bytes
export interface IDelay {
apply: () => Promise<unknown>;
setAttemptNumber: (attempt: number) => void;
}