boldsign
Version:
NodeJS client for boldsign
33 lines (32 loc) • 666 B
TypeScript
export declare class Font {
'name'?: Font.NameEnum;
'color'?: string | null;
'size'?: number;
'style'?: Font.StyleEnum;
'lineHeight'?: number;
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
}
enum StyleEnum {
Regular,
Bold,
Italic,
Underline
}
}