File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11docs /
22lib /
3- node_modules /
3+ node_modules /
4+ coverage /
Original file line number Diff line number Diff line change @@ -80,8 +80,11 @@ export class Iterable {
8080 // Lazy initialization to avoid circular dependency
8181 if ( ! this . _inAppManager ) {
8282 // Import here to avoid circular dependency at module level
83- // eslint-disable-next-line @typescript-eslint/no-var-requires,@typescript-eslint/no-require-imports
84- const { IterableInAppManager } = require ( '../../inApp/classes/IterableInAppManager' ) ;
83+ /* eslint-disable @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports */
84+ const {
85+ IterableInAppManager,
86+ } = require ( '../../inApp/classes/IterableInAppManager' ) ;
87+ /* eslint-enable @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports */
8588 this . _inAppManager = new IterableInAppManager ( ) ;
8689 }
8790 return this . _inAppManager ;
@@ -484,8 +487,6 @@ export class Iterable {
484487 /**
485488 * Launch the application from the background in Android devices.
486489 *
487- * @group Android Only
488- *
489490 * @example
490491 * ```typescript
491492 * Iterable.wakeApp();
You can’t perform that action at this time.
0 commit comments