Skip to content

Commit dce86ab

Browse files
committed
chore: fix types
1 parent c6b53c1 commit dce86ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/src/utils/base64.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default {
3636

3737
encodeFromByteArray: function (input: Uint8Array): string {
3838
const output: string[] = [];
39-
let chr1: number, chr2: number, chr3: number;
39+
let chr1: any, chr2: any, chr3: any;
4040
let enc1: number, enc2: number, enc3: number, enc4: number;
4141
let i = 0;
4242

0 commit comments

Comments
 (0)