tdesign-vue
Version:
8 lines (7 loc) • 575 B
TypeScript
import { ComponentInternalInstance } from '@vue/composition-api';
import { VNode } from 'vue';
import { ItemsType, TdDescriptionItem } from '../interface';
import { TdDescriptionItemProps } from '../type';
export declare function renderCustomNode(node: string | ((...args: any[]) => any) | ComponentInternalInstance, params?: {}): any;
export declare function renderVNodeTNode(node: VNode | ComponentInternalInstance, name1: string, name2?: string): any;
export declare function itemTypeIsProps(itemsType: ItemsType, item: TdDescriptionItem): item is TdDescriptionItemProps;