( this: ThisType<NextTick>, ...args: Parameters<NextTick> )
| 4 | type NextTick = Vue['$nextTick'] |
| 5 | |
| 6 | export const nextTick: NextTick = function nextTick( |
| 7 | this: ThisType<NextTick>, |
| 8 | ...args: Parameters<NextTick> |
| 9 | ) { |
| 10 | return getVueConstructor()?.nextTick.apply(this, args) |
| 11 | } |
no test coverage detected
searching dependent graphs…