Home > kibana-plugin-core-public > MountPoint
A function that should mount DOM content inside the provided container element and return a handler to unmount it.
Signature:
export declare type MountPoint<T extends HTMLElement = HTMLElement> = (element: T) => UnmountCallback;