2026-02-14 14:53:41 +08:00

26 lines
268 B
TypeScript

/**
* Size Options
*
* 尺寸选项
*/
export interface SizeOptions {
/**
* Width
*
* 宽度
*/
width?: string
/**
* Height
*
* 高度
*/
height?: string
/**
* Aspect ratio
*
* 宽高比
*/
ratio?: number | string
}