You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initial implementation of identify, good enough for an alpha release.
---------
Co-authored-by: Yusinto Ngadiman <[email protected]>
Co-authored-by: Ryan Lamb <[email protected]>
Co-authored-by: LaunchDarklyReleaseBot <[email protected]>
Copy file name to clipboardExpand all lines: packages/shared/sdk-client/src/api/LDClient.ts
+2-13Lines changed: 2 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -89,21 +89,10 @@ export interface LDClient {
89
89
* The context properties. Must contain at least the `key` property.
90
90
* @param hash
91
91
* The signed context key if you are using [Secure Mode](https://docs.launchdarkly.com/sdk/features/secure-mode#configuring-secure-mode-in-the-javascript-client-side-sdk).
92
-
* @param onDone
93
-
* A function which will be called as soon as the flag values for the new context are available,
94
-
* with two parameters: an error value (if any), and an {@link LDFlagSet} containing the new values
95
-
* (which can also be obtained by calling {@link variation}). If the callback is omitted, you will
96
-
* receive a Promise instead.
97
92
* @returns
98
-
* If you provided a callback, then nothing. Otherwise, a Promise which resolve once the flag
99
-
* values for the new context are available, providing an {@link LDFlagSet} containing the new values
100
-
* (which can also be obtained by calling {@link variation}).
93
+
* A Promise which resolve once the flag values for the new context are available.
0 commit comments