nutui-uniapp
Version:
京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)
17 lines (14 loc) • 367 B
text/typescript
export const avatarSize = ['large', 'normal', 'small'] as const
export type AvatarSize = (typeof avatarSize)[number]
export const avatarShape = ['round', 'square'] as const
export type AvatarShape = (typeof avatarShape)[number]
export interface AvatarFinalSize {
/**
* 是否为预设尺寸
*/
preset: boolean
/**
* 尺寸值
*/
value: string
}