UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

22 lines (21 loc) 712 B
import { Context, Parameter } from "./../index"; export interface SelectionAttachmentInterface { context?: Context; fileMask?: string; pages?: string; } export declare class SelectionAttachment implements SelectionAttachmentInterface, Parameter { context?: Context; fileMask?: string; pages?: string; constructor(data: any); static getContextDefault(): Context; static getContextDescription(): string; static getFileMaskDefault(): string; static getFileMaskDescription(): string; static getPagesDefault(): string; static getPagesDescription(): string; static fromJson(data: any): SelectionAttachment; toJson(): any; clone(): SelectionAttachment; }