next-flow-interface 0.26.18 → 0.26.19
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 +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -6102,7 +6102,7 @@ export declare class RvModelService {
|
|
|
6102
6102
|
has(mid: string): boolean;
|
|
6103
6103
|
hasFid(fid: string): boolean;
|
|
6104
6104
|
add(rvModel: RvModel): string;
|
|
6105
|
-
addTransformNode(): string;
|
|
6105
|
+
addTransformNode(name?: string): string;
|
|
6106
6106
|
remove(mid: string): boolean;
|
|
6107
6107
|
generateId(): string;
|
|
6108
6108
|
}
|
|
@@ -6404,7 +6404,7 @@ export declare class RvSceneService {
|
|
|
6404
6404
|
isAncestor(nid: string, of: string): boolean;
|
|
6405
6405
|
isParent(nid: string, of: string): boolean;
|
|
6406
6406
|
isChild(nid: string, of: string): boolean;
|
|
6407
|
-
|
|
6407
|
+
newTransformNode(parent?: string, name?: string): string;
|
|
6408
6408
|
move(nid: string, newParent?: string): void;
|
|
6409
6409
|
delete(nid: string): void;
|
|
6410
6410
|
getDescendantsWithSelf(nid: string): string[];
|
|
@@ -6527,7 +6527,7 @@ export declare class SceneService {
|
|
|
6527
6527
|
offsetX: number;
|
|
6528
6528
|
offsetY: number;
|
|
6529
6529
|
};
|
|
6530
|
-
|
|
6530
|
+
newTransformNode(parent?: string, name?: string): void;
|
|
6531
6531
|
/**
|
|
6532
6532
|
* 批量复制
|
|
6533
6533
|
*
|