OnEdgesChange
此类型用于键入 onEdgesChange
函数。
¥This type is used for typing the onEdgesChange
function.
export type OnEdgesChange<EdgeType extends Edge = Edge> = (
changes: EdgeChange<EdgeType>[],
) => void;
字段
¥Fields
Name | Type |
---|---|
# changes |
用法
¥Usage
此类型接受自定义边缘类型的泛型类型参数。有关更多信息,请参阅此 我们的 Typescript 指南中的部分。
¥This type accepts a generic type argument of custom edge types. See this section in our Typescript guide for more information.
const onEdgesChange: OnEdgesChange = useCallback(
(changes) => setEdges((eds) => applyEdgeChanges(changes, eds)),
[setEdges],
);