Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1x 21892x | import type { NodeTypeMap } from 'roosterjs-content-model-types';
/**
* Type checker for Node. Return true if it of the specified node type
* @param node The node to check
* @param expectedType The type to check
*/
export function isNodeOfType<T extends keyof NodeTypeMap>(
node: Node | null | undefined,
expectedType: T
): node is NodeTypeMap[T] {
return !!node && node.nodeType == Node[expectedType];
}
|