(
element: HTMLElement,
options: SplitviewComponentOptions
)
| 22 | } |
| 23 | |
| 24 | export function createSplitview( |
| 25 | element: HTMLElement, |
| 26 | options: SplitviewComponentOptions |
| 27 | ): SplitviewApi { |
| 28 | const component = new SplitviewComponent(element, options); |
| 29 | return new SplitviewApi(component); |
| 30 | } |
| 31 | |
| 32 | export function createGridview( |
| 33 | element: HTMLElement, |
no outgoing calls
no test coverage detected
searching dependent graphs…