add aoa_to_sheet because it was missing

below are still missing, but i require aoa only.
split_cell:
format_cell
get_formulae
make_csv
make_json
make_formulae
table_to_sheet
table_to_book
sheet_to_row_object_array
This commit is contained in:
Tim Burnell 2017-04-14 14:16:23 -05:00 committed by GitHub
parent 0537ed70aa
commit a5b8313ff4

2
index.d.ts vendored
View File

@ -253,6 +253,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);
/** Converts a worksheet object to an array of JSON objects */
sheet_to_json<T>(worksheet:IWorkSheet, opts?: {
raw?: boolean;