@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 675 B
TypeScript
import { Parameter } from "./../index";
export interface FooterHeaderFooterInterface {
center?: string;
left?: string;
right?: string;
}
export declare class FooterHeaderFooter implements FooterHeaderFooterInterface, Parameter {
center?: string;
left?: string;
right?: string;
constructor(data: any);
static getCenterDefault(): string;
static getCenterDescription(): string;
static getLeftDefault(): string;
static getLeftDescription(): string;
static getRightDefault(): string;
static getRightDescription(): string;
static fromJson(data: any): FooterHeaderFooter;
toJson(): any;
clone(): FooterHeaderFooter;
}