UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

22 lines (21 loc) 690 B
import { Parameter } from "./../index"; export interface HeaderFooterPositionsInterface { center?: string; left?: string; right?: string; } export declare class HeaderFooterPositions implements HeaderFooterPositionsInterface, 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): HeaderFooterPositions; toJson(): any; clone(): HeaderFooterPositions; }