DefinitelyTyped/types/zipcelx/zipcelx-tests.ts
Alessandro Burato 47d137af32 Type definitions for zipcelx (#29917)
* Type definitions for zipcelx

* add strictFunctionTypes to tsconfig.json
2018-10-22 09:21:30 -07:00

19 lines
365 B
TypeScript

import zipcelx, { ZipCelXConfig } from "zipcelx";
const config: ZipCelXConfig = {
filename: "general-ledger-Q1",
sheet: {
data: [
[{
value: "Income - Webshop",
type: "string"
}, {
value: 1000,
type: "number"
}]
]
}
};
zipcelx(config);