laya-coreui-es
Version:
laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改
33 lines (32 loc) • 727 B
TypeScript
/**
* @private
*/
export declare class HTMLExtendStyle {
static EMPTY: HTMLExtendStyle;
/**
* <p>描边宽度(以像素为单位)。</p>
* 默认值0,表示不描边。
* @default 0
*/
stroke: number;
/**
* <p>描边颜色,以字符串表示。</p>
* @default "#000000";
*/
strokeColor: string;
/**
* <p>垂直行间距(以像素为单位)</p>
*/
leading: number;
/**行高。 */
lineHeight: number;
letterSpacing: number;
href: string;
constructor();
reset(): HTMLExtendStyle;
recover(): void;
/**
* 从对象池中创建
*/
static create(): HTMLExtendStyle;
}