@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 560 B
TypeScript
import { XslTransformationFile, Parameter } from "./../index";
export interface XslTransformationResourcesInterface {
file?: Array<XslTransformationFile>;
}
export declare class XslTransformationResources implements XslTransformationResourcesInterface, Parameter {
file?: Array<XslTransformationFile>;
constructor(data: any);
static getFileDefault(): Array<XslTransformationFile>;
static getFileDescription(): string;
static fromJson(data: any): XslTransformationResources;
toJson(): any;
clone(): XslTransformationResources;
}