UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 614 B
import { Parameter, NewsPanelEntry } from "./../index"; export interface NewsInterface { contentRefreshInterval?: number; entry?: Array<NewsPanelEntry>; } export declare class News implements NewsInterface, Parameter { contentRefreshInterval?: number; entry?: Array<NewsPanelEntry>; constructor(data: any); static getContentRefreshIntervalDefault(): number; static getContentRefreshIntervalDescription(): string; static getEntryDefault(): Array<NewsPanelEntry>; static getEntryDescription(): string; static fromJson(data: any): News; toJson(): any; clone(): News; }