Skip to content

Commit

Permalink
refactor: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentdchan committed Dec 4, 2023
1 parent e511223 commit c60f8c8
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 10 deletions.
1 change: 0 additions & 1 deletion packages/blocky-core/src/data/change.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { test, expect, describe } from "vitest";
import {
BlockDataElement,
BlockyDocument,
DataBaseElement,
BlockyTextModel,
Expand Down
2 changes: 1 addition & 1 deletion packages/blocky-core/src/model/test/block.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test, expect } from "vitest";
import "@pkg/index";
import { BlockyDocument, BlockDataElement } from "@pkg/data";
import { BlockyDocument } from "@pkg/data";
import { bky } from "@pkg/helper/bky";

test("block level 0", () => {
Expand Down
7 changes: 1 addition & 6 deletions packages/blocky-core/src/model/test/state.test.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
import { expect, test } from "vitest";
import { makeDefaultIdGenerator } from "@pkg/helper/idHelper";
import { bky } from "@pkg/helper/bky";
import {
BlockDataElement,
BlockyDocument,
BlockyTextModel,
JSONNode,
} from "@pkg/data";
import { BlockyDocument, JSONNode } from "@pkg/data";
import Delta from "quill-delta-es";
import { EditorState } from "../editorState";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import { makeDefaultIdGenerator } from "@pkg/helper/idHelper";
import { bky } from "@pkg/helper/bky";
import { EditorState } from "@pkg/model/editorState";
import {
BlockDataElement,
BlockyDocument,
BlockyTextModel,
Changeset,
ChangesetRecordOption,
FinalizedChangeset,
Expand Down

0 comments on commit c60f8c8

Please sign in to comment.