UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

19 lines (18 loc) 669 B
import { AddToolboxOutline, Parameter, RemoveToolboxOutline, Clear } from "./../index"; export interface ToolboxOutlineOutlineInterface { add?: AddToolboxOutline; clear?: Clear; remove?: RemoveToolboxOutline; } export declare class ToolboxOutlineOutline implements ToolboxOutlineOutlineInterface, Parameter { add?: AddToolboxOutline; clear?: Clear; remove?: RemoveToolboxOutline; constructor(data: any); static getAddDescription(): string; static getClearDescription(): string; static getRemoveDescription(): string; static fromJson(data: any): ToolboxOutlineOutline; toJson(): any; clone(): ToolboxOutlineOutline; }