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 {