UNPKG

boldsign

Version:

NodeJS client for boldsign

37 lines (36 loc) 774 B
export declare class Font { 'name'?: Font.NameEnum; 'color'?: string | null; 'size'?: number; 'style'?: Font.StyleEnum; 'lineHeight'?: number; 'isBoldFont'?: boolean; 'isItalicFont'?: boolean; 'isUnderLineFont'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace Font { enum NameEnum { Helvetica, Courier, TimesRoman, NotoSans, Carlito } enum StyleEnum { Regular, Bold, Italic, Underline } }