botframework-webchat-component
Version:
React component of botframework-webchat
10 lines • 458 B
TypeScript
import { type BlankNode } from './BlankNode';
/**
* An unconnected blank node is a blank node without any edge or properties.
*
* @see https://json-ld.github.io/json-ld.org/spec/latest/json-ld/#data-model
* @param object A blank node.
* @returns `true`, if the blank node is unconnected, otherwise, `false`.
*/
export default function isUnconnectedBlankNode<T extends BlankNode>(object: T): boolean;
//# sourceMappingURL=isUnconnectedBlankNode.d.ts.map