(
element: HTMLElement,
options: DockviewComponentOptions
)
| 14 | import { SplitviewComponent } from '../splitview/splitviewComponent'; |
| 15 | |
| 16 | export function createDockview( |
| 17 | element: HTMLElement, |
| 18 | options: DockviewComponentOptions |
| 19 | ): DockviewApi { |
| 20 | const component = new DockviewComponent(element, options); |
| 21 | return component.api; |
| 22 | } |
| 23 | |
| 24 | export function createSplitview( |
| 25 | element: HTMLElement, |
no outgoing calls
no test coverage detected
searching dependent graphs…