We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c27ac71 commit 424edc5Copy full SHA for 424edc5
types/splitio.d.ts
@@ -189,8 +189,14 @@ interface IUserConsentAPI {
189
*/
190
interface ISharedSettings {
191
/**
192
- * Whether the logger should be enabled or disabled by default.
193
- * @property {Boolean} debug
+ * Boolean value to indicate whether the logger should be enabled or disabled, or a log level string.
+ *
194
+ * Examples:
195
+ * ```javascript
196
+ * config.debug = true
197
+ * config.debug = 'WARN'
198
+ * ```
199
+ * @property {boolean | LogLevel} debug
200
* @default false
201
202
debug?: boolean | LogLevel,
0 commit comments