From 0537ed70aaa7439f87d9bf6c592ee7980ce35506 Mon Sep 17 00:00:00 2001 From: DMan577 Date: Tue, 14 Mar 2017 20:02:19 +0200 Subject: [PATCH] Update index.d.ts --- index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.d.ts b/index.d.ts index 6af7911..0e05c86 100644 --- a/index.d.ts +++ b/index.d.ts @@ -177,7 +177,7 @@ export interface IWorkBook { * object representing the worksheet */ export interface IWorkSheet { - [cell: string]: IWorkSheetCell; + [cell: string]: IWorkSheetCell | any; } export interface IWorkSheetCell { @@ -230,12 +230,12 @@ export interface IWorkSheetCell { /** * Cell hyperlink object (.Target holds link, .tooltip is tooltip) */ - l?: string | Object; + l?: Object; /** * The style/theme of the cell (if applicable) */ - s?: string; + s?: Object; } export interface ICell {