@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 416 B
TypeScript
import { Parameter } from "./../index";
export interface PortfolioFolderInterface {
path?: string;
}
export declare class PortfolioFolder implements PortfolioFolderInterface, Parameter {
path?: string;
constructor(data: any);
static getPathDefault(): string;
static getPathDescription(): string;
static fromJson(data: any): PortfolioFolder;
toJson(): any;
clone(): PortfolioFolder;
}