Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/exceljs/exceljs
Browse files Browse the repository at this point in the history
  • Loading branch information
guyonroche committed May 7, 2019
2 parents 4915195 + 1b8c63d commit c6ee7a1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ tmp/*
# WebStorm
.idea

# Intellij IDEA
exceljs.iml

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: node_js
node_js:
- 6
- 8
- 9
- 10
- 11
- 12
script:
- npm test
notifications:
Expand Down
6 changes: 6 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1129,6 +1129,12 @@ export interface Xlsx {
*/
read(stream: Stream): Promise<Workbook>;

/**
* load from an array buffer
* @param buffer
*/
load(buffer: Buffer): Promise<Workbook>;

/**
* Create input stream for reading
*/
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@
"uglify-js": "^3.4.9"
},
"main": "./dist/es5/index.js",
"browser": "./dist/es5/exceljs.browser.js",
"types": "./index.d.ts",
"files": [
"dist",
Expand Down

0 comments on commit c6ee7a1

Please sign in to comment.