@visactor/vue-vtable
Version:
The vue version of VTable
12 lines (11 loc) • 410 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 PivotColumnDimension(props: PivotColumnDimensionProps): VNode;
declare namespace PivotColumnDimension {
var symbol: string;
}
export default PivotColumnDimension;