Skip to Content

isNode()

GitHub 上的源代码

¥Source on GitHub

测试对象是否可以用作 Node。在 TypeScript 中,这是一个类型保护,如果返回 true,它将缩小你传递给 Node 的任何内容的类型。

¥Test whether an object is useable as a Node. In TypeScript this is a type guard that will narrow the type of whatever you pass in to Node if it returns true.

import { isNode } from '@xyflow/react'; const node = { id: 'node-a', data: { label: 'node', }, position: { x: 0, y: 0, }, }; if (isNode(node)) { // .. }

签名

¥Signature

#Params
#item
any
#Returns
boolean
Tests if whatever you passed in can be used as an node. If you're using TypeScript, this function actions as a type guard and will narrow the type of whatever you pass in to an Node if it returns true.
Last updated on