t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
25 lines (24 loc) • 921 B
TypeScript
import type { TreeDataInterface } from './interface';
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComputedRef } from 'vue';
import type { TreeAddLevelReturnInterface as a } from '../../_interface';
declare const _sfc_main: DefineComponent<{
readonly data: {
readonly type: PropType<TreeDataInterface>;
readonly default: () => [];
};
}, {
prop: {
readonly data?: unknown;
} & {
data: TreeDataInterface;
} & {};
treeData: ComputedRef<a[]>;
handleClick: (item: a, index: number) => void;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
readonly data?: unknown;
} & {
data: TreeDataInterface;
} & {}>, {
data: TreeDataInterface;
}>;
export default _sfc_main;