boldsign
Version:
NodeJS client for boldsign
38 lines (37 loc) • 785 B
TypeScript
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,
Null
}
enum StyleEnum {
Regular,
Bold,
Italic,
Underline,
Null
}
}