ant-design-vue/types/layout/layout-header.d.ts
tanjinzhou f84065dcd3 bump 2.0.0-beta.8
fix: types error
2020-09-08 13:33:55 +08:00

19 lines
603 B
TypeScript

// 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
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 {
$props: AntdProps & LayoutHeaderProps;
}