ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
9 lines (8 loc) • 313 B
TypeScript
import { FunctionalComponent } from 'vue';
import { BlockProps } from './Base';
declare const TITLE_ELE_LIST: [1, 2, 3, 4, 5];
export declare type TitleProps = Omit<BlockProps & {
level?: typeof TITLE_ELE_LIST[number];
}, 'strong'>;
declare const Title: FunctionalComponent<TitleProps>;
export default Title;