Use `object` instead of `Object` in type definitions.

This commit is contained in:
Wolfgang Faust 2017-05-13 19:31:56 -04:00
parent 5d433c72b8
commit 0af66e171f

5
types/index.d.ts vendored
View File

@ -1,5 +1,6 @@
// Project: https://github.com/SheetJS/js-xlsx
// Definitions by: themauveavenger <https://github.com/themauveavenger/>, Wolfgang Faust <https://github.com/wolfgang42>
// 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 {