fix formatting and types

This commit is contained in:
Tim Burnell
2017-04-14 15:37:22 -05:00
committed by GitHub
parent 110b2a80f5
commit 51b5fdc071

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;