UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 651 B
import { Parameter } from "./../index"; export interface VisibilityBackgroundBaseSettingsInterface { onPrint?: boolean; onScreen?: boolean; } export declare class VisibilityBackgroundBaseSettings implements VisibilityBackgroundBaseSettingsInterface, Parameter { onPrint?: boolean; onScreen?: boolean; constructor(data: any); static getOnPrintDefault(): boolean; static getOnPrintDescription(): string; static getOnScreenDefault(): boolean; static getOnScreenDescription(): string; static fromJson(data: any): VisibilityBackgroundBaseSettings; toJson(): any; clone(): VisibilityBackgroundBaseSettings; }