Skip to content

Commit

Permalink
Update parameter type
Browse files Browse the repository at this point in the history
Signed-off-by: Tanner Lewis <[email protected]>
  • Loading branch information
lewijacn committed Nov 7, 2024
1 parent 1e0be25 commit 5e2f69f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function importVPC(stack: Stack, vpdIdParameter: CfnParameter, availabilityZones
});
}

function generateExportString(exports: { [key: string]: string }): string {
function generateExportString(exports: Record<string, string>): string {
return Object.entries(exports)
.map(([key, value]) => `export ${key}=${value}`)
.join("; ");
Expand Down

0 comments on commit 5e2f69f

Please sign in to comment.