(fn: any)
| 21 | |
| 22 | // deno-lint-ignore no-explicit-any |
| 23 | export function isAsyncAnyComponent(fn: any): fn is AsyncAnyComponent<any> { |
| 24 | return typeof fn === "function" && fn.constructor.name === "AsyncFunction"; |
| 25 | } |
| 26 | |
| 27 | export async function renderAsyncAnyComponent<Props>( |
| 28 | fn: AsyncAnyComponent<Props>, |
no outgoing calls
no test coverage detected