@visactor/vue-vtable
Version:
The vue version of VTable
12 lines (11 loc) • 412 B
TypeScript
import type { VNode } from 'vue';
import type { IDimension } from '@visactor/vtable';
interface ObjectHandler {
objectHandler?: string | Array<string>;
}
export type PivotColumnDimensionProps = IDimension & ObjectHandler;
declare function PivotRowDimension(props: PivotColumnDimensionProps): VNode;
declare namespace PivotRowDimension {
var symbol: string;
}
export default PivotRowDimension;