From eb331cbdbe45ec811f2e39f614af3199944036d6 Mon Sep 17 00:00:00 2001 From: EdJoPaTo Date: Sat, 30 Mar 2024 10:31:44 +0100 Subject: [PATCH] test: adapt to lint --- source/html.test.ts | 2 +- source/markdown.test.ts | 2 +- source/markdownv2.test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/html.test.ts b/source/html.test.ts index d87a351..b0e2000 100644 --- a/source/html.test.ts +++ b/source/html.test.ts @@ -1,7 +1,7 @@ import { strictEqual } from "node:assert"; import { test } from "node:test"; import * as format from "./html.ts"; -import { Formatter } from "./types.ts"; +import type { Formatter } from "./types.ts"; format satisfies Formatter; diff --git a/source/markdown.test.ts b/source/markdown.test.ts index b09c304..02c6903 100644 --- a/source/markdown.test.ts +++ b/source/markdown.test.ts @@ -1,7 +1,7 @@ import { strictEqual, throws } from "node:assert"; import { test } from "node:test"; import * as format from "./markdown.ts"; -import { Formatter } from "./types.ts"; +import type { Formatter } from "./types.ts"; format satisfies Formatter; diff --git a/source/markdownv2.test.ts b/source/markdownv2.test.ts index 4e963e4..b5430a8 100644 --- a/source/markdownv2.test.ts +++ b/source/markdownv2.test.ts @@ -1,7 +1,7 @@ import { strictEqual } from "node:assert"; import { test } from "node:test"; import * as format from "./markdownv2.ts"; -import { Formatter } from "./types.ts"; +import type { Formatter } from "./types.ts"; format satisfies Formatter;