@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 642 B
TypeScript
import { DestinationEvent, DestinationEventInterface, Parameter, FitRectangleDestinationFitRectangle } from "./../index";
export interface FitRectangleDestinationInterface extends DestinationEventInterface {
fitRectangle?: FitRectangleDestinationFitRectangle;
}
export declare class FitRectangleDestination extends DestinationEvent implements FitRectangleDestinationInterface, Parameter {
fitRectangle?: FitRectangleDestinationFitRectangle;
constructor(data: any);
static getFitRectangleDescription(): string;
static fromJson(data: any): FitRectangleDestination;
toJson(): any;
clone(): FitRectangleDestination;
}