Skip to content

Commit

Permalink
fix bad imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ssalbdivad committed Jun 23, 2024
1 parent 1446097 commit aba0689
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ark/schema/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { array, mutable, requireKeys, show } from "@arktype/util"
import type { Ark } from "arktype"
import type { Ark } from "./keywords/keywords.js"
import type { IntrinsicKeywords, RawRootScope } from "./scope.js"
import type {
ActualWriter,
Expand Down
7 changes: 5 additions & 2 deletions ark/schema/scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ import {
type flattenListable,
type show
} from "@arktype/util"
import type { ArkConfig } from "arktype"
import { resolveConfig, type ResolvedArkConfig } from "./config.js"
import {
resolveConfig,
type ArkConfig,
type ResolvedArkConfig
} from "./config.js"
import type { GenericRoot } from "./generic.js"
import type { inferRoot, validateRoot } from "./inference.js"
import type { internal } from "./keywords/internal.js"
Expand Down

0 comments on commit aba0689

Please sign in to comment.