Skip to content

Commit

Permalink
Chore(reactivity-core): Format WatchSource #1384
Browse files Browse the repository at this point in the history
  • Loading branch information
tisma95 committed Oct 3, 2024
1 parent ce21c5f commit c8d6bd0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/api/reactivity-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,9 +384,7 @@ Observe une ou plusieurs sources de données réactives et invoque une fonction
type WatchSource<T> =
| Ref<T> // ref
| (() => T) // accesseur
| T extends object
? T
: never // objet réactif
| (T extends object ? T : never) // objet réactif
interface WatchOptions extends WatchEffectOptions {
immediate?: boolean // Par défaut: false
Expand Down

0 comments on commit c8d6bd0

Please sign in to comment.