Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
testersen committed Nov 17, 2023
1 parent ea52bf4 commit 624adcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/rawString.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export function rawString(
template: TemplateStringsArray,
...args: any[]
...args: unknown[]
): string {
let str = template[0] || "";
for (let index = 0; index < args.length; index++) {
Expand Down

0 comments on commit 624adcf

Please sign in to comment.