Skip to content

Commit 8fcda88

Browse files
committed
fix: @typescript-eslint/no-invalid-void-type
1 parent dbe468f commit 8fcda88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/base64.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function toBase64Char(bitMap6: number): string {
9090
return b64CharacterSet.charAt(bitMap6);
9191
}
9292

93-
function fromBase64Char(base64Char: string | void): number {
93+
function fromBase64Char(base64Char: string | undefined): number {
9494
if (base64Char === undefined) {
9595
return -1;
9696
}

0 commit comments

Comments
 (0)