@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 472 B
TypeScript
import { Parameter, XslTransformationResources } from "./../index";
export interface XslTransformationInterface {
resources?: XslTransformationResources;
}
export declare class XslTransformation implements XslTransformationInterface, Parameter {
resources?: XslTransformationResources;
constructor(data: any);
static getResourcesDescription(): string;
static fromJson(data: any): XslTransformation;
toJson(): any;
clone(): XslTransformation;
}