index.d.ts 770 B

1234567891011121314151617181920
  1. import type { INode } from '@/utils/types';
  2. export declare const renderNode: (h: any, data: INode, context: any) => any;
  3. export declare const renderBtn: (h: any, node: INode, context: any) => any;
  4. export declare const renderLabel: (h: any, node: INode, context: any) => any;
  5. export declare const renderChildren: (h: any, list: any, context: any) => any;
  6. export declare const TreeOrgNode: {
  7. (props: any, context: any): any;
  8. directives: {
  9. focus: {
  10. mounted(el: HTMLElement, { value }: {
  11. value: any;
  12. }): void;
  13. updated(el: HTMLElement, { value }: {
  14. value: any;
  15. }): void;
  16. };
  17. nodedrag: import("vue").ObjectDirective<any, any>;
  18. };
  19. };
  20. export default TreeOrgNode;