@extclp/vexip-ui
Version:
A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good
13 lines (12 loc) • 332 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
export declare const rendererProps: {
renderer: {
type: FunctionConstructor;
default: null;
};
data: {
type: PropType<Record<string, any>>;
default: undefined;
};
};
export type RendererProps = ExtractPropTypes<typeof rendererProps>;