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