Skip to content

Commit

Permalink
chore: explicitly mark type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Jun 3, 2023
1 parent 21269e2 commit 4ce1039
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/node/sign.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createHmac } from "crypto";
import { Algorithm, SignOptions } from "../types";
import { Algorithm, type SignOptions } from "../types";
import { VERSION } from "../version";

export async function sign(
Expand Down
2 changes: 1 addition & 1 deletion src/web.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Algorithm, AlgorithmLike, SignOptions } from "./types";
import { Algorithm, type AlgorithmLike, type SignOptions } from "./types";
import { getAlgorithm } from "./utils";

const enc = new TextEncoder();
Expand Down

0 comments on commit 4ce1039

Please sign in to comment.