/* * @Author: your name * @Date: 2022-04-11 17:26:13 * @Description: * @FilePath: /zl-large-screen/src/type/LargeScreenBlockTitle.ts */ export interface IBlockTitle { title: string | React.ReactNode; titleType?:string; tabsList?:ITabsList[]; tabsEvent?:Function; scenesEvent?:(type: string, props?:any) => void; activeTab?:string, rightBtn?:string, layerListEvent?:Function; layerType?:string; clickBack?:Function; isClick?:boolean } export interface ITabsList{ key:string; name:string }