UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 563 B
import { Parameter } from "./../index"; export interface PortfolioSelectionInterface { fileName?: string; path?: string; } export declare class PortfolioSelection implements PortfolioSelectionInterface, Parameter { fileName?: string; path?: string; constructor(data: any); static getFileNameDefault(): string; static getFileNameDescription(): string; static getPathDefault(): string; static getPathDescription(): string; static fromJson(data: any): PortfolioSelection; toJson(): any; clone(): PortfolioSelection; }