UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

16 lines (14 loc) 553 B
import { ExtractPropTypes, PropType } from 'vue'; import { ChildNodeInstance } from './type'; export declare const treeNodeProps: { readonly data: ObjectConstructor; readonly node: PropType<number[]>; readonly parentNode: ObjectConstructor; }; export type TreeNodeProps = ExtractPropTypes<typeof treeNodeProps>; export declare const treeNodeEmits: { "push-nodes": (child: ChildNodeInstance) => boolean; "change-check": () => boolean; "change-show": (uid: number) => boolean; }; export type TreeNodeEmits = typeof treeNodeEmits;