@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 951 B
TypeScript
import { BarcodeSelection, BarcodeDetectInputFormat, BarcodeDetectOutputFormat, Parameter } from "./../index";
export interface DetectBarcodeInterface {
inputFormat?: BarcodeDetectInputFormat;
outputFormat?: BarcodeDetectOutputFormat;
selection?: Array<BarcodeSelection>;
}
export declare class DetectBarcode implements DetectBarcodeInterface, Parameter {
inputFormat?: BarcodeDetectInputFormat;
outputFormat?: BarcodeDetectOutputFormat;
selection?: Array<BarcodeSelection>;
constructor(data: any);
static getInputFormatDefault(): BarcodeDetectInputFormat;
static getInputFormatDescription(): string;
static getOutputFormatDefault(): BarcodeDetectOutputFormat;
static getOutputFormatDescription(): string;
static getSelectionDefault(): Array<BarcodeSelection>;
static getSelectionDescription(): string;
static fromJson(data: any): DetectBarcode;
toJson(): any;
clone(): DetectBarcode;
}