Files
hospital-rescue-app-v2/uni_modules/x-runstart-logo/utssdk/interface.uts
T
2026-09-24 16:25:22 +08:00

23 lines
590 B
Plaintext

export type RGBA = { r : number, g : number, b : number, a : number }
export type XRUN_START_LOGO_OPTS = {
/** 启动界面背景色,不能使用颜色名称 */
bgColor:string,
/** logo图片名称 */
logo:string,
/** logo宽 */
width:number,
/** logo高 */
height:number,
/** logo容器圆角 */
round:number,
/** logo容器背景,不能使用颜色名称 */
logoBgColor:string,
/** logo下方文字 */
rightText:string,
/** 文字字号 */
fontSize:number,
/** 文字颜色,不能使用颜色名称 */
fontColor:string,
/** logo容器的padding */
logoPadding:number
}