Skip to content

Commit

Permalink
Fix silly types import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Dec 1, 2023
1 parent 6f3bd23 commit ae0a921
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import { runIdentityFunctionCheck } from './devModeChecks/identityFunctionCheck'
import { runInputStabilityCheck } from './devModeChecks/inputStabilityCheck'
import { globalDevModeChecks } from './devModeChecks/setGlobalDevModeChecks'
import type { DevModeChecks, Selector, SelectorArray } from './types'
import { DevModeChecksExecutionInfo } from './types'
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
import type {
DevModeChecks,
Selector,
SelectorArray,
DevModeChecksExecutionInfo
} from './types'

export const NOT_FOUND = 'NOT_FOUND'
export type NOT_FOUND_TYPE = typeof NOT_FOUND
Expand Down

0 comments on commit ae0a921

Please sign in to comment.