@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 897 B
TypeScript
import { SelectionAttachment, Parameter } from "./../index";
export interface ExtractToolboxAttachmentInterface {
folderNameTemplate?: string;
selection?: Array<SelectionAttachment>;
singleFileAsZip?: boolean;
}
export declare class ExtractToolboxAttachment implements ExtractToolboxAttachmentInterface, Parameter {
folderNameTemplate?: string;
selection?: Array<SelectionAttachment>;
singleFileAsZip?: boolean;
constructor(data: any);
static getFolderNameTemplateDefault(): string;
static getFolderNameTemplateDescription(): string;
static getSelectionDefault(): Array<SelectionAttachment>;
static getSelectionDescription(): string;
static getSingleFileAsZipDefault(): boolean;
static getSingleFileAsZipDescription(): string;
static fromJson(data: any): ExtractToolboxAttachment;
toJson(): any;
clone(): ExtractToolboxAttachment;
}