Skip to content

Commit

Permalink
fix: use import type for typing
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Oct 29, 2022
1 parent 927ebc7 commit 8446573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/no-dead-link.ts
Expand Up @@ -9,8 +9,8 @@ import pMemoize from "p-memoize";
import PQueue from "p-queue";
import * as http from "http";
import * as https from "https";
import { TextlintRuleReporter } from "@textlint/types";
import { TxtNode } from "@textlint/ast-node-types";
import type { TextlintRuleReporter } from "@textlint/types";
import type { TxtNode } from "@textlint/ast-node-types";

export type Options = {
checkRelative: boolean; // {boolean} `false` disables the checks for relative URIs.
Expand Down

0 comments on commit 8446573

Please sign in to comment.