jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/es/_util/base.d.ts

39 lines
618 B
TypeScript
Raw Normal View History

2024-11-15 03:51:28 +00:00
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;
}