Skip to content

Commit e4eae33

Browse files
authored
Merge pull request #118 from ghiscoding/chore/typescript-5-9
chore(deps): update TypeScript v5.9.3
2 parents 75b57ce + 1c19167 commit e4eae33

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

packages/excel-builder-vanilla/src/factory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function createExcelFile<T extends 'Blob' | 'Uint8Array' = 'Blob'>(
6969
if (mimeType === undefined) {
7070
mimeType = format === 'xls' ? 'application/vnd.ms-excel' : 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
7171
}
72-
resolve(new Blob([data], { type: mimeType }) as InferOutputByType<T>);
72+
resolve(new Blob([data as unknown as ArrayBuffer], { type: mimeType }) as InferOutputByType<T>);
7373
}
7474
});
7575
});

pnpm-lock.yaml

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ catalog:
66
fflate: ^0.8.2
77
sass: ^1.89.2
88
'remove-glob': ^0.3.4
9-
typescript: ^5.8.3
9+
typescript: ^5.9.2
1010
vite: ^7.0.4

0 commit comments

Comments
 (0)