(options?: Partial<WatchOptions>)
| 90 | } |
| 91 | |
| 92 | function getWatcherOption(options?: Partial<WatchOptions>): WatchOptions { |
| 93 | return { |
| 94 | ...{ |
| 95 | immediate: false, |
| 96 | deep: false, |
| 97 | flush: 'pre', |
| 98 | }, |
| 99 | ...options, |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | function getWatchEffectOption(options?: Partial<WatchOptions>): WatchOptions { |
| 104 | return { |
no outgoing calls
no test coverage detected
searching dependent graphs…