Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 504 Bytes

kibana-plugin-core-public.mountpoint.md

File metadata and controls

13 lines (8 loc) · 504 Bytes

Home > kibana-plugin-core-public > MountPoint

MountPoint type

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;