Skip to content

Commit

Permalink
Wrong type annotation for bind and deep options
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulMaly committed Sep 6, 2022
1 parent 71b523c commit e105d16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/observe.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const observedSymbol = Symbol('__observed')
* Batch computed properties calls, wrapping them in a queueMicrotask and
* executing them in a new context and preventing excessive calls.
* If batch is an integer, the calls will be debounced by the value in milliseconds using setTimemout.
* @prop {number} [deep] - Recursively observe nested objects and when setting new properties.
* @prop {number} [bind] - Automatically bind methods to the observed object.
* @prop {boolean} [deep] - Recursively observe nested objects and when setting new properties.
* @prop {boolean} [bind] - Automatically bind methods to the observed object.
*/

/**
Expand Down

0 comments on commit e105d16

Please sign in to comment.