UNPKG

sixue-content

Version:
24 lines (23 loc) 569 B
/// <reference types="react" /> import './index.scss'; declare type ComponentProps = { children: any; breadList?: any; tabList?: any; tabIndex?: number; tabFunc?: any; scrollNodeStyle?: any; isBackground?: boolean; }; declare function SixueContent(props: ComponentProps): JSX.Element; declare namespace SixueContent { var defaultProps: { breadList: any[]; tabList: any[]; tabIndex: number; scrollNodeStyle: {}; tabFunc: string; isBackground: boolean; }; } export default SixueContent;