@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 616 B
TypeScript
import { Parameter } from "./../index";
export interface FontInterface {
name?: string;
size?: number;
underline?: boolean;
}
export declare class Font implements FontInterface, Parameter {
name?: string;
size?: number;
underline?: boolean;
constructor(data: any);
static getNameDefault(): string;
static getNameDescription(): string;
static getSizeDefault(): number;
static getSizeDescription(): string;
static getUnderlineDefault(): boolean;
static getUnderlineDescription(): string;
static fromJson(data: any): Font;
toJson(): any;
clone(): Font;
}