laya-coreui-es
Version:
laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改
26 lines (25 loc) • 563 B
TypeScript
import { Resource } from "./Resource";
/**
* @private
* <code>Bitmap</code> 图片资源类。
*/
export declare class Bitmap extends Resource {
/**@private */
protected _width: number;
/**@private */
protected _height: number;
/**
* 获取宽度。
*/
get width(): number;
set width(width: number);
/***
* 获取高度。
*/
get height(): number;
set height(height: number);
/**
* 创建一个 <code>Bitmap</code> 实例。
*/
constructor();
}