| 1 | export interface Widget { |
| 2 | vtype: VType |
| 3 | name: string |
| 4 | _owner: any |
| 5 | props: any |
| 6 | _rendered: any |
| 7 | context: any |
| 8 | init (parentContext, parentComponent): Element | null |
| 9 | update ( |
| 10 | previous: ComponentInstance, |
| 11 | current: ComponentInstance, |
| 12 | context: any, |
| 13 | dom?: Element |
| 14 | ): Element | null |
| 15 | destroy (dom?: Element) |
| 16 | } |
| 17 | |
| 18 | export interface Portal { |
| 19 | type: Element |
no outgoing calls
no test coverage detected