UNPKG

element-plus

Version:

A Component Library for Vue 3

17 lines (16 loc) 501 B
import { TableColumnCtx } from "./table-column/defaults.js"; import { DefaultRow } from "./table/defaults.js"; import * as vue from "vue"; //#region ../../packages/components/table/src/h-helper.d.ts type Props = { tableLayout: 'fixed' | 'auto'; columns?: TableColumnCtx<DefaultRow>[]; }; declare function hColgroup(props: Props): vue.VNode<vue.RendererNode, vue.RendererElement, { [key: string]: any; }>; declare namespace hColgroup { var props: string[]; } //#endregion export { hColgroup };