Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
![download](https://img.shields.io/npm/dt/js2excel.svg) ![npm-version](https://img.shields.io/npm/v/js2excel.svg) ![license](https://img.shields.io/npm/l/js2excel.svg) ![bower-license](https://img.shields.io/bower/l/js2excel.svg)

This repo just fixes the missing export, allowing it to be used in Angular 6 projects

## js2excel
A simple module for excel and json converts each other.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js2excel",
"version": "1.0.1",
"version": "1.0.2",
"author": "pomysky@gmail.com",
"description": "A simple module for excel and json converts each other",
"license": "MIT",
Expand Down
5 changes: 5 additions & 0 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,9 @@ declare const js2excel: {
json2excel: typeof json2excel;
csv2json: typeof csv2json;
};
export {
json2excel,
excel2json,
csv2json
};
export default js2excel;