From e7e129e417fbaeacf840b144137a157489cce2a0 Mon Sep 17 00:00:00 2001 From: SheetJS Date: Wed, 16 Nov 2022 14:03:42 -0500 Subject: [PATCH] type fix (fixes #2828 h/t @younes-io) --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 12be899..06a25a7 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -564,7 +564,7 @@ export interface DenseSheet extends Sheet { * Special keys start with '!' * Dense-mode worksheets store data in the '!data' key */ - [cell: string]: CellObject[][] | SheetKeys; + [cell: string]: CellObject[][] | SheetKeys | any; /** * Dense-mode worksheets store data in an array of arrays