From 0af66e171f2bbf52a3c8e3a95cddfa0519203bbc Mon Sep 17 00:00:00 2001 From: Wolfgang Faust Date: Sat, 13 May 2017 19:31:56 -0400 Subject: [PATCH] Use `object` instead of `Object` in type definitions. --- types/index.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index aca494b..5727525 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1,5 +1,6 @@ // Project: https://github.com/SheetJS/js-xlsx // Definitions by: themauveavenger , Wolfgang Faust +// TypeScript Version: 2.2 /** Attempts to read filename and parse */ export function readFile(filename: string, opts?: IParsingOptions): IWorkBook; @@ -377,12 +378,12 @@ export interface IWorkSheetCell { /** * Cell hyperlink object (.Target holds link, .tooltip is tooltip) */ - l?: Object; + l?: object; /** * The style/theme of the cell (if applicable) */ - s?: Object; + s?: object; } export interface ICell {