UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 576 B
import { Parameter } from "./../index"; export interface HttpSettingsHeaderEntryInterface { name?: string; value?: string; } export declare class HttpSettingsHeaderEntry implements HttpSettingsHeaderEntryInterface, Parameter { name?: string; value?: string; constructor(data: any); static getNameDefault(): string; static getNameDescription(): string; static getValueDefault(): string; static getValueDescription(): string; static fromJson(data: any): HttpSettingsHeaderEntry; toJson(): any; clone(): HttpSettingsHeaderEntry; }