@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 557 B
TypeScript
import { SelectionAttachment, Parameter } from "./../index";
export interface RemoveToolboxAttachmentInterface {
selection?: Array<SelectionAttachment>;
}
export declare class RemoveToolboxAttachment implements RemoveToolboxAttachmentInterface, Parameter {
selection?: Array<SelectionAttachment>;
constructor(data: any);
static getSelectionDefault(): Array<SelectionAttachment>;
static getSelectionDescription(): string;
static fromJson(data: any): RemoveToolboxAttachment;
toJson(): any;
clone(): RemoveToolboxAttachment;
}