(type: string | typeof UI5Element, props: Record<string, any>, key: string)
| 45 | } |
| 46 | |
| 47 | export function jsxDEV(type: string | typeof UI5Element, props: Record<string, any>, key: string): VNode<any> { |
| 48 | const tag = preprocess(type, props, key); |
| 49 | |
| 50 | checkAttributeUsage(type, props); |
| 51 | |
| 52 | return _jsxDEV(tag, props, key) as VNode<any>; |
| 53 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…