From 8b9a008159513b51f78fa8de70a7929636e9d2d8 Mon Sep 17 00:00:00 2001 From: Tim Burnell Date: Fri, 14 Apr 2017 15:37:22 -0500 Subject: [PATCH] fix formatting and types --- index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 4b745a9..9b1b634 100644 --- a/index.d.ts +++ b/index.d.ts @@ -254,7 +254,8 @@ export interface IRange { export interface IUtils { /** converts an array of arrays of JS data to a worksheet. */ - aoa_to_sheet(data:Array, opts?:any); + aoa_to_sheet(data: , opts?:any): IWorkSheet; + /** Converts a worksheet object to an array of JSON objects */ sheet_to_json(worksheet:IWorkSheet, opts?: { raw?: boolean;