UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

16 lines (15 loc) 470 B
import { AddBarcode, Parameter, DetectBarcode } from "./../index"; export interface BarcodeInterface { add?: AddBarcode; detect?: DetectBarcode; } export declare class Barcode implements BarcodeInterface, Parameter { add?: AddBarcode; detect?: DetectBarcode; constructor(data: any); static getAddDescription(): string; static getDetectDescription(): string; static fromJson(data: any): Barcode; toJson(): any; clone(): Barcode; }