Update index.d.ts

This commit is contained in:
DMan577 2017-03-14 20:02:19 +02:00 committed by GitHub
parent aa86eef7fc
commit 0537ed70aa

6
index.d.ts vendored
View File

@ -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 {