UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

22 lines (21 loc) 720 B
import { Barcode, Billing, Parameter, PdfPassword, Settings } from "./../index"; export interface BarcodeOperationInterface { barcode: Barcode; billing?: Billing; password?: PdfPassword; settings?: Settings; } export declare class BarcodeOperation implements BarcodeOperationInterface, Parameter { barcode: Barcode; billing?: Billing; password?: PdfPassword; settings?: Settings; constructor(data: any); static getBarcodeDescription(): string; static getBillingDescription(): string; static getPasswordDescription(): string; static getSettingsDescription(): string; static fromJson(data: any): BarcodeOperation; toJson(): any; clone(): BarcodeOperation; }