Unwrap all lone ambient external modules

This commit is contained in:
Ryan Cavanaugh 2016-04-22 14:12:45 -07:00
parent a102a3adb1
commit 96df2958ab

10
xlsx.d.ts vendored

@ -3,11 +3,11 @@
// Definitions by: themauveavenger <https://github.com/themauveavenger/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module 'xlsx' {
export function readFile(filename:string, opts?:IParsingOptions):IWorkBook;
export function read(data:any, opts?:IParsingOptions):IWorkBook;
export var utils:IUtils;
declare export function readFile(filename: string, opts?: IParsingOptions): IWorkBook;
declare export function read(data: any, opts?: IParsingOptions): IWorkBook;
declare export var utils: IUtils;
export interface IProperties {
LastAuthor?: string
@ -132,5 +132,3 @@ declare module 'xlsx' {
sheet_to_csv(worksheet: IWorkSheet): any;
sheet_to_formulae(worksheet: IWorkSheet): any;
}
}