UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

14 lines (13 loc) β€’ 473 B
import InternalLayout, { Content, Footer, Header } from './layout'; import Sider from './Sider'; export type { BasicProps as LayoutProps } from './layout'; export type { SiderProps } from './Sider'; declare type InternalLayoutType = typeof InternalLayout; interface LayoutType extends InternalLayoutType { Header: typeof Header; Footer: typeof Footer; Content: typeof Content; Sider: typeof Sider; } declare const Layout: LayoutType; export default Layout;