Browse Source

docs: add return type for subscribeNotification (#15499)

trop[bot] 6 years ago
parent
commit
3e8b854975
1 changed files with 4 additions and 0 deletions
  1. 4 0
      docs/api/system-preferences.md

+ 4 - 0
docs/api/system-preferences.md

@@ -75,6 +75,8 @@ that contains the user information dictionary sent along with the notification.
 * `callback` Function
   * `event` String
   * `userInfo` Object
+  
+Returns `Number` - The ID of this subscription
 
 Subscribes to native notifications of macOS, `callback` will be called with
 `callback(event, userInfo)` when the corresponding `event` happens. The
@@ -98,6 +100,8 @@ example values of `event` are:
 * `callback` Function
   * `event` String
   * `userInfo` Object
+  
+Returns `Number` - The ID of this subscription
 
 Same as `subscribeNotification`, but uses `NSNotificationCenter` for local defaults.
 This is necessary for events such as `NSUserDefaultsDidChangeNotification`.