next-flow-interface 0.26.15 → 0.26.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +12 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -6494,12 +6494,24 @@ export declare class SceneService {
|
|
|
6494
6494
|
* @param newParentNid - 新父节点nid (内部递归使用)
|
|
6495
6495
|
*/
|
|
6496
6496
|
private copyInternal;
|
|
6497
|
+
/**
|
|
6498
|
+
* 批量删除节点
|
|
6499
|
+
*
|
|
6500
|
+
* @param nidList - 要删除的节点nid列表
|
|
6501
|
+
*/
|
|
6502
|
+
batchDelete(nidList: string[]): void;
|
|
6497
6503
|
/**
|
|
6498
6504
|
* 删除指定节点及其所有子节点
|
|
6499
6505
|
*
|
|
6500
6506
|
* @param nid - 要删除的节点nid
|
|
6501
6507
|
*/
|
|
6502
6508
|
delete(nid: string): void;
|
|
6509
|
+
/**
|
|
6510
|
+
* 内部删除实现
|
|
6511
|
+
*
|
|
6512
|
+
* @param nid - 要删除的节点nid
|
|
6513
|
+
*/
|
|
6514
|
+
private deleteInternal;
|
|
6503
6515
|
}
|
|
6504
6516
|
|
|
6505
6517
|
/**
|