Skip to content

Commit

Permalink
Adds readonly modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Enngage committed Dec 10, 2024
1 parent 779d62f commit fedc23e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/import/import-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export function importManager(config: ImportConfig) {
languageVariants
};
},
getReportFile(importResult: ImportResult): { filename: string; content: string } {
getReportFile(importResult: ImportResult): { readonly filename: string; readonly content: string } {
return {
filename: reportFilename,
content: JSON.stringify(getReportResult(importResult))
Expand Down

0 comments on commit fedc23e

Please sign in to comment.