@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
25 lines (24 loc) • 820 B
TypeScript
import { MetadataRectangle, Parameter } from "./../index";
export interface BoxesInterface {
artBox?: MetadataRectangle;
bleedBox?: MetadataRectangle;
cropBox?: MetadataRectangle;
mediaBox: MetadataRectangle;
trimBox?: MetadataRectangle;
}
export declare class Boxes implements BoxesInterface, Parameter {
artBox?: MetadataRectangle;
bleedBox?: MetadataRectangle;
cropBox?: MetadataRectangle;
mediaBox: MetadataRectangle;
trimBox?: MetadataRectangle;
constructor(data: any);
static getArtBoxDescription(): string;
static getBleedBoxDescription(): string;
static getCropBoxDescription(): string;
static getMediaBoxDescription(): string;
static getTrimBoxDescription(): string;
static fromJson(data: any): Boxes;
toJson(): any;
clone(): Boxes;
}