/** * Get the "root" class of the ctor * * @param {Function} ctor * @param {Function} [rootCtor] the root ctor need to be ignore, defaults to Object * @returns {Function} */ export function getRootCtor(ctor: Function, rootCtor?: Function): Function; export default getRootCtor;