@studiometa/js-toolkit
Version:
A set of useful little bits of JavaScript to boost your project! 🚀
7 lines (6 loc) • 318 B
TypeScript
import type { Base, BaseConstructor } from '../Base/index.js';
/**
* Get the closest parent of a component.
* @link https://js-toolkit.studiometa.dev/api/helpers/getClosestParent.html
*/
export declare function getClosestParent<T extends BaseConstructor>(childInstance: Base, ParentConstructor: T): InstanceType<T>;