ant-design-vue/types/layout/layout-header.d.ts

19 lines
603 B
TypeScript
Raw Normal View History

// 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';
export interface LayoutHeaderProps {
/**
* whether contain Sider in children, don't have to assign it normally. Useful in ssr avoid style flickering
* @type boolean
*/
hasSider?: boolean;
}
export default class LayoutHeader extends AntdComponent {
2020-09-07 12:45:01 +08:00
$props: AntdProps & LayoutHeaderProps;
}