UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

22 lines (21 loc) 639 B
import { Parameter } from "./../index"; export interface PageIntervalInterface { even?: boolean; odd?: boolean; pages?: string; } export declare class PageInterval implements PageIntervalInterface, Parameter { even?: boolean; odd?: boolean; pages?: string; constructor(data: any); static getEvenDefault(): boolean; static getEvenDescription(): string; static getOddDefault(): boolean; static getOddDescription(): string; static getPagesDefault(): string; static getPagesDescription(): string; static fromJson(data: any): PageInterval; toJson(): any; clone(): PageInterval; }