first commit
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
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 };
|
||||
Reference in New Issue
Block a user