blob: d22b2c0d40c0f8e31b352ce3087f32d4b93f7ed9 [file] [log] [blame] [edit]
/**
* Checks if an element contains another given element.
*
* @param context the context element
* @param node the element to check
*/
export default function contains(context: Element, node: Element): boolean | undefined;