Installation
npm install --save @types/zipcelx
Summary
This package contains type definitions for zipcelx (https://github.com/dixieio/zipcelx#readme).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/zipcelx.
export interface ZipCelXCell {
value: string | number;
type: "string" | "number";
}
export type ZipCelXRow = ZipCelXCell[];
export type ZipCelXDataSet = ZipCelXRow[];
export interface ZipCelXSheet {
data: ZipCelXDataSet;
}
export interface ZipCelXConfig {
filename: string;
sheet: ZipCelXSheet;
}
export default function zipcelx(config: ZipCelXConfig): Promise<Blob>;
Additional Details
- Last updated: Tue, 07 Nov 2023 15:11:36 GMT
- Dependencies: none
Credits
These definitions were written by Alessandro Burato.