Skip to content

Commit 957bb75

Browse files
authored
fix typescript type fail (#4423)
1 parent fc88844 commit 957bb75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/helpers/scripts/generate-big-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function prepareCommandArgs(args: CommandType) {
2121
function prepareCommandOptions(options: {
2222
replyEncoding?: string;
2323
}): any {
24-
let replyEncoding = null;
24+
let replyEncoding: string | null = null;
2525

2626
if (options?.replyEncoding === 'utf8') {
2727
replyEncoding = 'utf8';

0 commit comments

Comments
 (0)