From a7efab5455833dc4d7cc9601ed9e62fa90f08d92 Mon Sep 17 00:00:00 2001 From: code-xhyun Date: Mon, 15 Jul 2024 14:11:07 +0900 Subject: [PATCH] fix: import path for JobError in touch.ts --- src/job/touch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/job/touch.ts b/src/job/touch.ts index cd257ce..fda0b1e 100644 --- a/src/job/touch.ts +++ b/src/job/touch.ts @@ -1,5 +1,5 @@ -import { JobError } from 'src/utils'; import { Job } from '.'; +import { JobError } from '../utils'; export type TouchMethod = (progress?: number) => Promise; /**