next-flow-interface 0.27.2 → 0.27.3
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 +0 -32
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -6820,15 +6820,6 @@ export declare function useAllSelectedInfo(): {
|
|
|
6820
6820
|
last: RsSelectionNodeInfo | null;
|
|
6821
6821
|
};
|
|
6822
6822
|
|
|
6823
|
-
/**
|
|
6824
|
-
* @public
|
|
6825
|
-
*/
|
|
6826
|
-
export declare function useGlobal<T = unknown>(path?: string | RvPath): {
|
|
6827
|
-
state: T;
|
|
6828
|
-
set: (key: string | RvPath, value: unknown) => void;
|
|
6829
|
-
mark: (key: string | RvPath) => void;
|
|
6830
|
-
};
|
|
6831
|
-
|
|
6832
6823
|
/**
|
|
6833
6824
|
* @public
|
|
6834
6825
|
*/
|
|
@@ -6909,19 +6900,6 @@ export declare function useSelectedMaterialInfo(): RsSelectionMaterialInfo;
|
|
|
6909
6900
|
*/
|
|
6910
6901
|
export declare function useStepOptions(withDisable?: boolean): StepOptions;
|
|
6911
6902
|
|
|
6912
|
-
/**
|
|
6913
|
-
* @public
|
|
6914
|
-
*/
|
|
6915
|
-
export declare function useTargetNode<T = unknown>(path?: string | RvPath): {
|
|
6916
|
-
sid: string;
|
|
6917
|
-
nid: string;
|
|
6918
|
-
state: T | null;
|
|
6919
|
-
multiSet: (key: string | RvPath, value: unknown) => void;
|
|
6920
|
-
set: (key: string | RvPath, value: unknown) => void;
|
|
6921
|
-
mark: (key: string | RvPath) => void;
|
|
6922
|
-
multiMark: (key: string | RvPath) => void;
|
|
6923
|
-
};
|
|
6924
|
-
|
|
6925
6903
|
/**
|
|
6926
6904
|
* @public
|
|
6927
6905
|
*/
|
|
@@ -6958,16 +6936,6 @@ export declare function useTargetNodeAttribute<T extends object = any>(path?: st
|
|
|
6958
6936
|
unsubscribe: (subscriber: NodeAttributeTargetSubscriber<T>) => void;
|
|
6959
6937
|
};
|
|
6960
6938
|
|
|
6961
|
-
/**
|
|
6962
|
-
* @public
|
|
6963
|
-
*/
|
|
6964
|
-
export declare function useTargetStep<T = unknown>(path?: string | RvPath): {
|
|
6965
|
-
sid: string;
|
|
6966
|
-
state: T;
|
|
6967
|
-
set: (key: string | RvPath, value: unknown) => void;
|
|
6968
|
-
mark: (key: string | RvPath) => void;
|
|
6969
|
-
};
|
|
6970
|
-
|
|
6971
6939
|
/**
|
|
6972
6940
|
* @public
|
|
6973
6941
|
*/
|