Skip to content

Commit e564d71

Browse files
committed
fix(scripts): exactOptionalPropertyTypes on the provider-replay arg parser
1 parent 5798dc7 commit e564d71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/provider-replay-track-record.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export function renderProviderTable(records: readonly ProviderTrackRecord[]): st
7171
return lines.join("\n");
7272
}
7373

74-
function parseArgs(argv: string[]): { fixtures?: string; artifacts: string; variants: string[]; seedSuffix: string; maxFixtures: number } {
74+
function parseArgs(argv: string[]): { fixtures: string | undefined; artifacts: string; variants: string[]; seedSuffix: string; maxFixtures: number } {
7575
const args = { fixtures: undefined as string | undefined, artifacts: ".counterfactual-artifacts", variants: [] as string[], seedSuffix: "default", maxFixtures: 500 };
7676
for (let i = 0; i < argv.length; i += 1) {
7777
const flag = argv[i];

0 commit comments

Comments
 (0)