(type: string | typeof UI5Element)
| 32 | } |
| 33 | |
| 34 | export function isUI5ElementClass(type: string | typeof UI5Element): type is typeof UI5Element { |
| 35 | return typeof type === "function" && "getMetadata" in type; |
| 36 | } |
| 37 | |
| 38 | export function preprocess(type: string | typeof UI5Element, props: Record<string, any>, key: string) { |
| 39 | let tag: string; |
no outgoing calls
no test coverage detected
searching dependent graphs…