h-helper.d.ts 509 B

1234567891011121314151617
  1. import { TableColumnCtx } from "./table-column/defaults.js";
  2. import { DefaultRow } from "./table/defaults.js";
  3. import * as _$vue from "vue";
  4. //#region ../../packages/components/table/src/h-helper.d.ts
  5. type Props = {
  6. tableLayout: 'fixed' | 'auto';
  7. columns?: TableColumnCtx<DefaultRow>[];
  8. };
  9. declare function hColgroup(props: Props): _$vue.VNode<_$vue.RendererNode, _$vue.RendererElement, {
  10. [key: string]: any;
  11. }>;
  12. declare namespace hColgroup {
  13. var props: string[];
  14. }
  15. //#endregion
  16. export { hColgroup };