vue-devui
Version:
DevUI components based on Vite and Vue3
15 lines (14 loc) • 489 B
TypeScript
import type { ExtractPropTypes, PropType } from 'vue';
import { IViewConfigs, IAxisConfigs } from '../../../type';
export declare const quadrantDiagramAxisProps: {
readonly diagramId: {
readonly type: StringConstructor;
};
readonly axisConfigs: {
readonly type: PropType<IAxisConfigs>;
};
readonly view: {
readonly type: PropType<IViewConfigs>;
};
};
export type QuadrantDiagramAxisProps = ExtractPropTypes<typeof quadrantDiagramAxisProps>;