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