@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 450 B
TypeScript
import { HeaderFooter, Parameter } from "./../index";
export interface AddHeaderFooterInterface {
headerFooterContent?: HeaderFooter;
}
export declare class AddHeaderFooter implements AddHeaderFooterInterface, Parameter {
headerFooterContent?: HeaderFooter;
constructor(data: any);
static getHeaderFooterContentDescription(): string;
static fromJson(data: any): AddHeaderFooter;
toJson(): any;
clone(): AddHeaderFooter;
}