(fn: () => Promise<T>)
| 116 | * @return The result of the given function. |
| 117 | */ |
| 118 | export async function manualChangeDetection<T>(fn: () => Promise<T>) { |
| 119 | return batchChangeDetection(fn, false); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Resolves the given list of async values in parallel (i.e. via Promise.all) while batching change |
no test coverage detected
searching dependent graphs…