@types/jsreport-xlsx
TypeScript icon, indicating that this package has built-in type declarations

1.4.5 • Public • Published

Installation

npm install --save @types/jsreport-xlsx

Summary

This package contains type definitions for jsreport-xlsx (https://github.com/jsreport/jsreport-xlsx).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsreport-xlsx.

index.d.ts

import { ExtensionDefinition, Template } from "jsreport-core";

declare namespace JsReportXlsx {
    interface Xlsx {
        shortid: string;
    }

    interface Options {
        addBufferSize: number;
        escapeAmp: boolean;
        numberOfParsedAddIterations: number;
    }
    interface XlsxTemplate extends Template {
        recipe: "xlsx" | string;
    }
}

declare module "jsreport-core" {
    interface TemplateRegistry {
        XlsxTemplate: JsReportXlsx.XlsxTemplate;
    }
}

declare function JsReportXlsx(options?: Partial<JsReportXlsx.Options>): ExtensionDefinition;

export = JsReportXlsx;

Additional Details

Credits

These definitions were written by taoqf.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @types/jsreport-xlsx

    Weekly Downloads

    910

    Version

    1.4.5

    License

    MIT

    Unpacked Size

    3.88 kB

    Total Files

    5

    Last publish

    Collaborators

    • types