Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 66b7419

Browse files
Ghislain BeaulacGhislain Beaulac
authored andcommitted
refactor(build): fix a small issue with TS missing type
1 parent d646959 commit 66b7419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/angular-slickgrid/services/export.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export class ExportService {
211211
const isEvaluatingFormatter = (columnDef.exportWithFormatter !== undefined) ? columnDef.exportWithFormatter : this._exportOptions.exportWithFormatter;
212212

213213
// did the user provide a Custom Formatter for the export
214-
const exportCustomFormatter: Formatter = (columnDef.exportCustomFormatter !== undefined) ? columnDef.exportCustomFormatter : undefined;
214+
const exportCustomFormatter: Formatter | undefined = (columnDef.exportCustomFormatter !== undefined) ? columnDef.exportCustomFormatter : undefined;
215215

216216
let itemData = '';
217217

0 commit comments

Comments
 (0)