(stencilEl: HTMLElement)
| 85 | * the component is lazy loaded. Returns `false` otherwise. |
| 86 | */ |
| 87 | export const hasLazyBuild = (stencilEl: HTMLElement) => { |
| 88 | return (stencilEl as any).componentOnReady !== undefined; |
| 89 | }; |
| 90 | |
| 91 | export type Attributes = { [key: string]: any }; |
| 92 |
no outgoing calls
no test coverage detected