@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 750 B
TypeScript
import { Parameter } from "./../index";
export interface TextExtractionLinksInterface {
fromText?: boolean;
protocol?: string;
withoutProtocol?: boolean;
}
export declare class TextExtractionLinks implements TextExtractionLinksInterface, Parameter {
fromText?: boolean;
protocol?: string;
withoutProtocol?: boolean;
constructor(data: any);
static getFromTextDefault(): boolean;
static getFromTextDescription(): string;
static getProtocolDefault(): string;
static getProtocolDescription(): string;
static getWithoutProtocolDefault(): boolean;
static getWithoutProtocolDescription(): string;
static fromJson(data: any): TextExtractionLinks;
toJson(): any;
clone(): TextExtractionLinks;
}