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

Commit 624adcf

Browse files
committed
fix linting issue
1 parent ea52bf4 commit 624adcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/rawString.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export function rawString(
22
template: TemplateStringsArray,
3-
...args: any[]
3+
...args: unknown[]
44
): string {
55
let str = template[0] || "";
66
for (let index = 0; index < args.length; index++) {

0 commit comments

Comments
 (0)