Skip to content

Commit b887d6d

Browse files
committed
fix: import type 구문으로 수정
1 parent 0821935 commit b887d6d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/patchlogr-core/src/partition/__tests__/partitionByMethod.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { CanonicalSpec } from "@patchlogr/types";
22
import { describe, expect, test } from "vitest";
33
import { partitionByMethod } from "../partitionByMethod";
4-
import { HashInternalNode, HashLeafNode } from "../partition";
4+
import type { HashInternalNode } from "../partition";
55

66
describe("partitionByMethod", () => {
77
test("should group by HTTPMethod", () => {

packages/patchlogr-core/src/partition/__tests__/partitionByTag.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { CanonicalSpec } from "@patchlogr/types";
22
import { describe, expect, test } from "vitest";
33
import { DEFAULT_TAG, partitionByTag } from "../partitionByTag";
4-
import { HashInternalNode } from "../partition";
4+
import type { HashInternalNode } from "../partition";
55

66
describe("partitionByTag", () => {
77
test("should group by first tag", () => {

0 commit comments

Comments
 (0)