UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 447 B
import { PagePages, Parameter } from "./../index"; export interface PagesDocumentInterface { page?: Array<PagePages>; } export declare class PagesDocument implements PagesDocumentInterface, Parameter { page?: Array<PagePages>; constructor(data: any); static getPageDefault(): Array<PagePages>; static getPageDescription(): string; static fromJson(data: any): PagesDocument; toJson(): any; clone(): PagesDocument; }