antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
39 lines (38 loc) • 618 B
TypeScript
export interface IBaseProps {
id?: string;
/**
* @description 类名
*/
className?: string;
/**
* @description 样式
*/
style?: string;
}
export declare type IconType = string;
export interface IBoundingClientRect {
/**
* @summary 上边界
*/
top: number;
/**
* @summary 右边界
*/
right: number;
/**
* @summary 下边界
*/
bottom: number;
/**
* @summary 左边界
*/
left: number;
/**
* @summary 宽度
*/
width: number;
/**
* @summary 高度
*/
height: number;
}