Skip to content

Commit

Permalink
fix(build-dts): fix build file at another chunk
Browse files Browse the repository at this point in the history
  • Loading branch information
Gehbt committed Apr 29, 2024
1 parent 4c9d068 commit 8456a78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/drivers/overlay.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineDriver } from "./utils";
import type { Driver } from "../types";
import type { Driver } from "..";
import { normalizeKey } from "./utils";

export interface OverlayStorageOptions {
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/utils/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Driver } from "../../types";
import type { Driver } from "../..";

type DriverFactory<T> = (opts: T) => Driver;

Expand Down

0 comments on commit 8456a78

Please sign in to comment.