DefinitelyTyped/types/barcode/index.d.ts
2017-03-24 14:27:52 -07:00

25 lines
750 B
TypeScript

// Type definitions for barcode
// Project: https://github.com/samt/barcode
// Definitions by: Pascal Vomhoff <https://github.com/pvomhoff>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
interface BarcodeOptions {
data: string | number;
width: number;
height: number;
}
interface BarcodeResult {
getStream(callback: (err: NodeJS.ErrnoException, stream: NodeJS.ReadableStream) => void): void;
saveImage(outputfilePath: string, callback: (err: NodeJS.ErrnoException) => void): void;
getBase64(callback: (err: NodeJS.ErrnoException, base64String: string) => void): void;
}
declare function barcode(type: string, options: BarcodeOptions): BarcodeResult;
export = barcode;