UNPKG

229 BTypeScriptView Raw
1/**
2 * Checks if an element contains another given element.
3 *
4 * @param context the context element
5 * @param node the element to check
6 */
7export default function contains(context: Element, node: Element): boolean | undefined;