@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
11 lines (10 loc) • 487 B
TypeScript
import type { TableLocale } from './interface';
interface DefaultExpandIconProps<RecordType> {
prefixCls: string;
onExpand: (record: RecordType, e: MouseEvent) => void;
record: RecordType;
expanded: boolean;
expandable: boolean;
}
declare function renderExpandIcon(locale: TableLocale): <RecordType>({ prefixCls, onExpand, record, expanded, expandable, }: DefaultExpandIconProps<RecordType>) => import("vue/jsx-runtime").JSX.Element;
export default renderExpandIcon;