UNPKG

lark-cms

Version:

Multi terminal CMS component library

51 lines (50 loc) 1.16 kB
export interface YhwFloorPictureData { h5: string; rjs: string; img: string; startTime?: number; endTime?: number; } export interface YhwFloorPictureTitlebar { title?: string; subtitle?: string; layout?: string; moreTitle?: string; moreH5?: string; moreWjs?: string; moreRjs?: string; } export interface YhwFloorPictureLayout { bgImg: string; bgColor?: string; borderColor?: string; margin: Array<string>; padding: Array<string>; border: Array<string>; corner: Array<string>; displayElement?: string; } export interface YhwFloorPictureSetting { power?: string; channel?: Array<string>; width?: number; height?: number; } export interface YhwFloorPictureState { id?: number; UUID?: number; pid?: number; title?: string; desc?: string; comps?: string; version?: string; trackID?: number; startTime: number; endTime: number; titlebar: YhwFloorPictureTitlebar; data: Array<YhwFloorPictureData>; layout: YhwFloorPictureLayout; setting: YhwFloorPictureSetting; userInfo: any; IsByShowPower?: boolean; }