@frigade/react 1.35.20 → 1.35.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts CHANGED
@@ -307,6 +307,11 @@ interface FrigadeConfig {
307
307
  */
308
308
  readonly?: boolean;
309
309
  theme?: Record<string, any>;
310
+ /**
311
+ * Flag to turn on debug mode which will log all events to the console. Default false.
312
+ * Default false.
313
+ */
314
+ debug?: boolean;
310
315
  }
311
316
  declare const FrigadeProvider: FC<FrigadeProviderProps>;
312
317