Add missing TS definitions

This commit is contained in:
Christopher Thielen 2017-06-17 13:45:03 -07:00 committed by SheetJS
parent c7e7180ab9
commit 5ceb2e01b5

8
types/index.d.ts vendored
View File

@ -628,6 +628,14 @@ export interface XLSX$Utils {
/** Converts A1 range to 0-indexed form */
decode_range(range: string): Range;
/* --- WorkBook Utilities --- */
/** Creates a new WorkBook */
book_new(): WorkBook;
/** Appends worksheet to given workbook (blank name will enumerate Sheet# to find unused name) */
book_append_sheet(wb: WorkBook, ws: WorkSheet, name?: String): void;
}
/** NODE ONLY! these return Readable Streams */