@ginstone/nga-api
Version:
30 lines (29 loc) • 588 B
TypeScript
export declare class TitleFont {
readonly color: TitleColor;
/**
* 加粗
*/
readonly bold: boolean;
/**
* 下划线
*/
readonly lineThrough: boolean;
/**
* 斜体
*/
readonly italic: boolean;
constructor(s?: string);
}
/**
* 标题颜色
*/
export declare class TitleColor {
name: string;
rgb: string;
constructor(name: string, rgb: string);
}
export declare const parseTitleFont: (data: string) => {
stid: number | undefined;
titleFont: string;
};
export declare const bin2UInt: (x: string) => number;