UNPKG

@studiometa/js-toolkit

Version:

A set of useful little bits of JavaScript to boost your project! 🚀

6 lines (5 loc) • 242 B
import type { Base, BaseConstructor } from '../Base/index.js'; /** * Get the closest parent of a component. */ export declare function getClosestParent<T extends BaseConstructor>(childInstance: Base, ParentConstructor: T): InstanceType<T>;