fix formatting and types

This commit is contained in:
Tim Burnell 2017-04-14 15:37:22 -05:00 committed by GitHub
parent a5b8313ff4
commit 8b9a008159

3
index.d.ts vendored
View File

@ -254,7 +254,8 @@ export interface IRange {
export interface IUtils {
/** converts an array of arrays of JS data to a worksheet. */
aoa_to_sheet<T>(data:Array, opts?:any);
aoa_to_sheet(data: <T>, opts?:any): IWorkSheet;
/** Converts a worksheet object to an array of JSON objects */
sheet_to_json<T>(worksheet:IWorkSheet, opts?: {
raw?: boolean;