t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
10 lines (9 loc) • 326 B
TypeScript
import type { PropType, ExtractPropTypes } from 'vue';
import type { TreeDataInterface } from './interface';
export declare const Props: {
readonly data: {
readonly type: PropType<TreeDataInterface>;
readonly default: () => [];
};
};
export declare type TreePropsType = ExtractPropTypes<typeof Props>;