UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

28 lines (27 loc) 837 B
import { Parameter } from "./../index"; export interface OptionsFontInterface { color?: string; name?: string; size?: number; underline?: boolean; } export declare class OptionsFont implements OptionsFontInterface, Parameter { color?: string; name?: string; size?: number; underline?: boolean; constructor(data: any); static getColorDefault(): string; static getColorDescription(): string; static getNameDefault(): string; static getNameDescription(): string; static getSizeDefault(): number; static getSizeDescription(): string; static getSizeMin(): number; static getSizeMax(): number; static getUnderlineDefault(): boolean; static getUnderlineDescription(): string; static fromJson(data: any): OptionsFont; toJson(): any; clone(): OptionsFont; }