diff --git a/src/utils.ts b/src/utils.ts index 756740515..ab3be9527 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -9,7 +9,9 @@ import type { DevModeChecksExecutionInfo } from './types' -export const NOT_FOUND = 'NOT_FOUND' +class NotFound {} + +export const NOT_FOUND = new NotFound() export type NOT_FOUND_TYPE = typeof NOT_FOUND /**