2019-01-19 18:56:33 +08:00
|
|
|
// Project: https://github.com/vueComponent/ant-design-vue
|
|
|
|
// Definitions by: Pythonfo <https://github.com/Pythonfo>
|
|
|
|
// Copy from: akki-jat <https://github.com/akki-jat>
|
|
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|
|
|
|
2020-08-31 14:59:56 +08:00
|
|
|
import { AntdComponent, AntdProps } from '../component';
|
2019-01-19 18:56:33 +08:00
|
|
|
|
2020-08-19 10:38:09 +08:00
|
|
|
export interface LayoutHeaderProps {
|
2019-01-19 18:56:33 +08:00
|
|
|
/**
|
|
|
|
* whether contain Sider in children, don't have to assign it normally. Useful in ssr avoid style flickering
|
|
|
|
* @type boolean
|
|
|
|
*/
|
2020-08-19 10:38:09 +08:00
|
|
|
hasSider?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class LayoutHeader extends AntdComponent {
|
2020-09-07 12:45:01 +08:00
|
|
|
$props: AntdProps & LayoutHeaderProps;
|
2019-01-19 18:56:33 +08:00
|
|
|
}
|