d-band / better-xlsx

A better xlsx library.
https://d-band.github.io/better-xlsx/
421 stars 36 forks source link

Can you add a typescript definition for us? #39

Closed MikyWang closed 7 years ago

MikyWang commented 7 years ago

this tool is good , but I want use it in a typescript project, so Can you add a typescript definition for me and others who use typescipt?

helloyou2012 commented 7 years ago

@MikyWang TypeScript now supports the --allowJs flag and you can use it.

helloyou2012 commented 7 years ago

tsconfig.json like this:

{
  "compilerOptions": {
    "allowJs": true,
    "types": ["node"]
  }
}