Skip to content

Commit

Permalink
[accel-wave] fix import path
Browse files Browse the repository at this point in the history
  • Loading branch information
koyopro committed Dec 24, 2024
1 parent e0fb1c6 commit 6361566
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/accel-wave/src/mount.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Model } from "accel-record";
import type { BaseUploader } from ".";
import type { BaseUploader } from "./index.js";

export const mount = <T extends Model>(
model: T,
Expand Down
6 changes: 3 additions & 3 deletions packages/accel-wave/src/uploader.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Model } from "accel-record";
import { Config } from ".";
import type { ConfigOptions } from "./config";
import type { Storage } from "./storages";
import type { ConfigOptions } from "./config.js";
import { Config } from "./index.js";
import type { Storage } from "./storages/index.js";

export class Item {
constructor(
Expand Down

0 comments on commit 6361566

Please sign in to comment.