@clovery/json-excel
v0.0.2
Published
```ts import { json2excel } from '@clovery/json-excel'
Downloads
2
Readme
@clovery/json-excel
import { json2excel } from '@clovery/json-excel'
const sheets = [{
name: 'Sheet 1',
columns: [
{
name: 'Name',
path: 'name'
}
],
rows: [
{
name: 'ZhangSan'
}
]
}]
json2excel('test.xlsx', sheets)