44
55``` ts
66
7+ import type SelectionArea from ' @viselect/vanilla' ;
8+
79// @public (undocumented)
810export type LinkItem = {
911 id: string ;
@@ -53,6 +55,7 @@ export const methods: {
5355 moveUpNode: (this : MindElixirInstance , el ? : Topic | undefined ) => Promise <void >;
5456 moveDownNode: (this : MindElixirInstance , el ? : Topic | undefined ) => Promise <void >;
5557 removeNode: (this : MindElixirInstance , el ? : Topic | undefined ) => Promise <void >;
58+ removeNodes: (this : MindElixirInstance , tpcs : Topic []) => Promise <void >;
5659 moveNode: (this : MindElixirInstance , from : Topic , to : Topic ) => Promise <void >;
5760 moveNodeBefore: (this : MindElixirInstance , from : Topic , to : Topic ) => Promise <void >;
5861 moveNodeAfter: (this : MindElixirInstance , from : Topic , to : Topic ) => Promise <void >;
@@ -154,9 +157,9 @@ export interface MindElixirInstance extends MindElixirMethods {
154157 // Warning: (ae-forgotten-export) The symbol "LinkDragMoveHelperInstance" needs to be exported by the entry point docs.d.ts
155158 //
156159 // @internal (undocumented)
157- helper1: LinkDragMoveHelperInstance ;
160+ helper1? : LinkDragMoveHelperInstance ;
158161 // @internal (undocumented)
159- helper2: LinkDragMoveHelperInstance ;
162+ helper2? : LinkDragMoveHelperInstance ;
160163 // Warning: (ae-forgotten-export) The symbol "Operation" needs to be exported by the entry point docs.d.ts
161164 //
162165 // (undocumented)
@@ -188,6 +191,8 @@ export interface MindElixirInstance extends MindElixirMethods {
188191 // (undocumented)
189192 mobileMenu: boolean ;
190193 // (undocumented)
194+ mouseSelectionButton: 0 | 2 ;
195+ // (undocumented)
191196 newTopicName: string ;
192197 // (undocumented)
193198 nodeData: NodeObj ;
@@ -208,6 +213,8 @@ export interface MindElixirInstance extends MindElixirMethods {
208213 // (undocumented)
209214 scaleVal: number ;
210215 // (undocumented)
216+ selection: SelectionArea ;
217+ // (undocumented)
211218 subLinkStyle: number ;
212219 // (undocumented)
213220 summaries: Summary [];
@@ -285,11 +292,11 @@ export type Summary = {
285292// dist/types/methods.d.ts:24:5 - (ae-forgotten-export) The symbol "CustomSvg" needs to be exported by the entry point docs.d.ts
286293// dist/types/methods.d.ts:26:5 - (ae-forgotten-export) The symbol "Topic" needs to be exported by the entry point docs.d.ts
287294// dist/types/methods.d.ts:26:5 - (ae-forgotten-export) The symbol "customLink" needs to be exported by the entry point docs.d.ts
288- // dist/types/methods.d.ts:72 :5 - (ae-forgotten-export) The symbol "NodeObjExport" needs to be exported by the entry point docs.d.ts
289- // dist/types/methods.d.ts:74 :5 - (ae-forgotten-export) The symbol "Wrapper" needs to be exported by the entry point docs.d.ts
290- // dist/types/methods.d.ts:78 :9 - (ae-forgotten-export) The symbol "Parent" needs to be exported by the entry point docs.d.ts
291- // dist/types/methods.d.ts:85 :5 - (ae-forgotten-export) The symbol "Children" needs to be exported by the entry point docs.d.ts
292- // dist/types/methods.d.ts:88 :5 - (ae-forgotten-export) The symbol "Theme" needs to be exported by the entry point docs.d.ts
295+ // dist/types/methods.d.ts:73 :5 - (ae-forgotten-export) The symbol "NodeObjExport" needs to be exported by the entry point docs.d.ts
296+ // dist/types/methods.d.ts:75 :5 - (ae-forgotten-export) The symbol "Wrapper" needs to be exported by the entry point docs.d.ts
297+ // dist/types/methods.d.ts:79 :9 - (ae-forgotten-export) The symbol "Parent" needs to be exported by the entry point docs.d.ts
298+ // dist/types/methods.d.ts:86 :5 - (ae-forgotten-export) The symbol "Children" needs to be exported by the entry point docs.d.ts
299+ // dist/types/methods.d.ts:89 :5 - (ae-forgotten-export) The symbol "Theme" needs to be exported by the entry point docs.d.ts
293300
294301// (No @packageDocumentation comment for this package)
295302
0 commit comments