(container: any, component: any)
| 151 | export interface FrameworkDelegate { |
| 152 | attachViewToDom(container: any, component: any, propsOrDataObj?: any, cssClasses?: string[]): Promise<HTMLElement>; |
| 153 | removeViewFromDom(container: any, component: any): Promise<void>; |
| 154 | } |
| 155 | |
| 156 | export interface KeyboardEventDetail { |
no outgoing calls
no test coverage detected