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

3.11.4 • Public • Published

Installation

npm install --save @types/jsbarcode

Summary

This package contains type definitions for jsbarcode (https://github.com/lindell/JsBarcode).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsbarcode.

index.d.ts

/// <reference types="node" />

declare namespace JsBarcode {
    function getModule(name: string): () => void;
    interface JsBarcodeOptions {
        format: string;
        width?: number | undefined;
        height?: number | undefined;
        displayValue?: boolean | undefined;
        text?: string | undefined;
        fontOptions?: string | undefined;
        font?: string | undefined;
        textAlign?: string | undefined;
        textPosition?: string | undefined;
        textMargin?: number | undefined;
        fontSize?: number | undefined;
        background?: string | undefined;
        lineColor?: string | undefined;
        margin?: number | undefined;
        marginTop?: number | undefined;
        marginBottom?: number | undefined;
        marginLeft?: number | undefined;
        marginRight?: number | undefined;
        flat?: boolean | undefined;
        valid?(valid: boolean): void;
    }
}

/**
 * The Browser version of the library's functionality, which makes use of an HTMLCanvasElement, HTMLImageElement or SVGElement
 * for rendering.
 * @param svg ID string or HTML element of the target to render within.
 * @param barcodeText Text to be rendered.
 * @param barcodeOptions Options used for rendering.
 */
declare function JsBarcode(
    svg: string | HTMLCanvasElement | HTMLImageElement | SVGElement,
    barcodeText: string,
    barcodeOptions?: JsBarcode.JsBarcodeOptions,
): void;

export = JsBarcode;

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Domien Bakker.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/jsbarcode

Weekly Downloads

13,450

Version

3.11.4

License

MIT

Unpacked Size

5.53 kB

Total Files

5

Last publish

Collaborators

  • types