@@ -239,7 +239,7 @@ These functions are available as exports from react-native-spokestack-tray
239
239
240
240
▸ **listen**(): _Promise‹boolean›_
241
241
242
- _Defined in [src/Spokestack.ts:630](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/Spokestack.ts#L630)_
242
+ _Defined in [src/Spokestack.ts:630](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/Spokestack.ts#L630)_
243
243
244
244
Tell Spokestack to start listening.
245
245
This will also open the tray.
@@ -260,7 +260,7 @@ await listen()
260
260
261
261
▸ **stopListening**(): _Promise‹boolean›_
262
262
263
- _Defined in [src/Spokestack.ts:650](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/Spokestack.ts#L650)_
263
+ _Defined in [src/Spokestack.ts:650](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/Spokestack.ts#L650)_
264
264
265
265
Tell Spokestack to stop listening with ASR.
266
266
@@ -280,7 +280,7 @@ stopListening()
280
280
281
281
▸ **isListening**(): _boolean_
282
282
283
- _Defined in [src/Spokestack.ts:725](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/Spokestack.ts#L725)_
283
+ _Defined in [src/Spokestack.ts:725](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/Spokestack.ts#L725)_
284
284
285
285
Returns whether Spokestack is currently listening with ASR
286
286
@@ -300,7 +300,7 @@ if (isListening()) {
300
300
301
301
▸ **isStarted**(): _boolean_
302
302
303
- _Defined in [src/Spokestack.ts:710](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/Spokestack.ts#L710)_
303
+ _Defined in [src/Spokestack.ts:710](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/Spokestack.ts#L710)_
304
304
305
305
Returns whether Spokestack has started the speech pipeline.
306
306
The tray starts the pipeline when mounted, but this is
@@ -322,7 +322,7 @@ if (isStarted()) {
322
322
323
323
▸ **isInitialized**(): _boolean_
324
324
325
- _Defined in [src/Spokestack.ts:693](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/Spokestack.ts#L693)_
325
+ _Defined in [src/Spokestack.ts:693](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/Spokestack.ts#L693)_
326
326
327
327
Returns whether Spokestack has been initialized.
328
328
The tray initializes Spokestack on mount, but is an
@@ -344,7 +344,7 @@ if (isInitialized()) {
344
344
345
345
▸ **addListener**(` type` : ListenerType, ` fn` : Listener): _void_
346
346
347
- _Defined in [src/Spokestack.ts:71](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/Spokestack.ts#L71)_
347
+ _Defined in [src/Spokestack.ts:71](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/Spokestack.ts#L71)_
348
348
349
349
Add a Spokestack listener to any of Spokestack's events
350
350
@@ -376,7 +376,7 @@ addListener(SpokestackListenerType.INIT, initialized)
376
376
377
377
▸ **removeListener**(` type` : ListenerType, ` fn` : Listener): _void_
378
378
379
- _Defined in [src/Spokestack.ts:88](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/Spokestack.ts#L88)_
379
+ _Defined in [src/Spokestack.ts:88](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/Spokestack.ts#L88)_
380
380
381
381
Remove a Spokestack listener
382
382
@@ -405,7 +405,7 @@ removeListener(SpokestackListenerType.INIT, initialized)
405
405
406
406
▸ **addListenerOnce**(` type` : ListenerType, ` fn` : Listener): _void_
407
407
408
- _Defined in [src/Spokestack.ts:108](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/Spokestack.ts#L108)_
408
+ _Defined in [src/Spokestack.ts:108](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/Spokestack.ts#L108)_
409
409
410
410
Adds a Spokestack listener to any of Spokestack's events
411
411
to be removed the first time it runs.
@@ -439,15 +439,15 @@ addListenerOnce(SpokestackListenerType.INIT, () => {
439
439
440
440
• **buttonWidth**? : _number_ (Default: **60**)
441
441
442
- _Defined in [src/SpokestackTray.tsx:102](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L102)_
442
+ _Defined in [src/SpokestackTray.tsx:102](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L102)_
443
443
444
444
Width (and height) of the mic button
445
445
446
446
### clientId
447
447
448
448
• **clientId**: _string_
449
449
450
- _Defined in [src/SpokestackTray.tsx:67](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L67)_
450
+ _Defined in [src/SpokestackTray.tsx:67](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L67)_
451
451
452
452
Your Spokestack tokens generated in your Spokestack account
453
453
at https://spokestack.io/account.
@@ -458,7 +458,7 @@ This is from the "ID" field.
458
458
459
459
• **clientSecret**: _string_
460
460
461
- _Defined in [src/SpokestackTray.tsx:74](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L74)_
461
+ _Defined in [src/SpokestackTray.tsx:74](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L74)_
462
462
463
463
Your Spokestack tokens generated in your Spokestack account
464
464
at https://spokestack.io/account.
@@ -469,39 +469,39 @@ This is from the "secret" field.
469
469
470
470
• **closeDelay**? : _number_ (Default: **0**)
471
471
472
- _Defined in [src/SpokestackTray.tsx:104](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L104)_
472
+ _Defined in [src/SpokestackTray.tsx:104](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L104)_
473
473
474
474
How long to wait to close the tray after speaking (ms)
475
475
476
476
### ` Optional` debug
477
477
478
478
• **debug**? : _boolean_
479
479
480
- _Defined in [src/SpokestackTray.tsx:106](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L106)_
480
+ _Defined in [src/SpokestackTray.tsx:106](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L106)_
481
481
482
482
Show debug messages from react-native-spokestack
483
483
484
484
### ` Optional` duration
485
485
486
486
• **duration**? : _number_ (Default: **500**)
487
487
488
- _Defined in [src/SpokestackTray.tsx:108](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L108)_
488
+ _Defined in [src/SpokestackTray.tsx:108](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L108)_
489
489
490
490
Duration for the tray animation (ms)
491
491
492
492
### ` Optional` easing
493
493
494
494
• **easing**? : _EasingFunction_ (Default: **Easing.bezier**)
495
495
496
- _Defined in [src/SpokestackTray.tsx:110](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L110)_
496
+ _Defined in [src/SpokestackTray.tsx:110](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L110)_
497
497
498
498
Easing function for the tray animation
499
499
500
500
### ` Optional` editTranscript
501
501
502
502
• **editTranscript**? : _function_
503
503
504
- _Defined in [src/SpokestackTray.tsx:115](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L115)_
504
+ _Defined in [src/SpokestackTray.tsx:115](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L115)_
505
505
506
506
Edit the transcript before classification
507
507
and before the user response bubble is shown.
@@ -520,7 +520,7 @@ and before the user response bubble is shown.
520
520
521
521
• **exitNodes**? : _string[]_
522
522
523
- _Defined in [src/SpokestackTray.tsx:120](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L120)_
523
+ _Defined in [src/SpokestackTray.tsx:120](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L120)_
524
524
525
525
All nodes in this array should end
526
526
the conversation and close the tray
@@ -529,7 +529,7 @@ the conversation and close the tray
529
529
530
530
• **fontFamily**? : _string_
531
531
532
- _Defined in [src/SpokestackTray.tsx:125](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L125)_
532
+ _Defined in [src/SpokestackTray.tsx:125](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L125)_
533
533
534
534
Font to use for "LISTENING...", "LOADING...",
535
535
and chat bubble text.
@@ -538,7 +538,7 @@ and chat bubble text.
538
538
539
539
• **gradientColors**? : _string[]_
540
540
541
- _Defined in [src/SpokestackTray.tsx:130](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L130)_
541
+ _Defined in [src/SpokestackTray.tsx:130](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L130)_
542
542
543
543
Colors for the linear gradient shown when listening
544
544
Can be any number of colors (recommended: 2-3)
@@ -547,7 +547,7 @@ Can be any number of colors (recommended: 2-3)
547
547
548
548
• **greet**? : _boolean_ (Default: **false**)
549
549
550
- _Defined in [src/SpokestackTray.tsx:136](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L136)_
550
+ _Defined in [src/SpokestackTray.tsx:136](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L136)_
551
551
552
552
Whether to greet the user with a welcome message
553
553
when the tray opens.
@@ -557,7 +557,7 @@ Note: `handleIntent` must respond to the "greet" intent.
557
557
558
558
• **handleIntent**: _function_
559
559
560
- _Defined in [src/SpokestackTray.tsx:84](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L84)_
560
+ _Defined in [src/SpokestackTray.tsx:84](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L84)_
561
561
562
562
This function takes an intent from the NLU
563
563
and returns an object with a unique conversation
@@ -583,7 +583,7 @@ if sound has been turned off.
583
583
584
584
• **haptic**? : _boolean_ (Default: **true**)
585
585
586
- _Defined in [src/SpokestackTray.tsx:141](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L141)_
586
+ _Defined in [src/SpokestackTray.tsx:141](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L141)_
587
587
588
588
Set this to false to disable the haptic
589
589
that gets played whenever the tray starts listening.
@@ -592,15 +592,15 @@ that gets played whenever the tray starts listening.
592
592
593
593
• **minHeight**? : _number_ (Default: **170**)
594
594
595
- _Defined in [src/SpokestackTray.tsx:143](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L143)_
595
+ _Defined in [src/SpokestackTray.tsx:143](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L143)_
596
596
597
597
Minimum height for the tray
598
598
599
599
### nluModelUrls
600
600
601
601
• **nluModelUrls**: _object_
602
602
603
- _Defined in [src/SpokestackTray.tsx:96](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L96)_
603
+ _Defined in [src/SpokestackTray.tsx:96](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L96)_
604
604
605
605
The URLs of your NLU model files.
606
606
These models will be automatically downloaded
@@ -620,7 +620,7 @@ See https://spokestack.io/docs/Concepts/nlu
620
620
621
621
• **onClose**? : _function_
622
622
623
- _Defined in [src/SpokestackTray.tsx:147](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L147)_
623
+ _Defined in [src/SpokestackTray.tsx:147](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L147)_
624
624
625
625
Called whenever the tray has closed
626
626
@@ -632,7 +632,7 @@ Called whenever the tray has closed
632
632
633
633
• **onError**? : _function_
634
634
635
- _Defined in [src/SpokestackTray.tsx:149](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L149)_
635
+ _Defined in [src/SpokestackTray.tsx:149](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L149)_
636
636
637
637
Called whenever there's an error from Spokestack
638
638
@@ -650,7 +650,7 @@ Called whenever there's an error from Spokestack
650
650
651
651
• **onOpen**? : _function_
652
652
653
- _Defined in [src/SpokestackTray.tsx:151](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L151)_
653
+ _Defined in [src/SpokestackTray.tsx:151](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L151)_
654
654
655
655
Called whenever the tray has opened
656
656
@@ -662,15 +662,15 @@ Called whenever the tray has opened
662
662
663
663
• **orientation**? : _"left" | "right"_
664
664
665
- _Defined in [src/SpokestackTray.tsx:155](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L155)_
665
+ _Defined in [src/SpokestackTray.tsx:155](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L155)_
666
666
667
667
The tray button can be oriented on either side of the screen
668
668
669
669
### ` Optional` primaryColor
670
670
671
671
• **primaryColor**? : _string_ (Default: **"**)
672
672
673
- _Defined in [src/SpokestackTray.tsx:160](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L160)_
673
+ _Defined in [src/SpokestackTray.tsx:160](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L160)_
674
674
675
675
This color is used to theme the tray
676
676
and is used in the mic button and speech bubbles.
@@ -679,7 +679,7 @@ and is used in the mic button and speech bubbles.
679
679
680
680
• **refreshModels**? : _boolean_
681
681
682
- _Defined in [src/SpokestackTray.tsx:167](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L167)_
682
+ _Defined in [src/SpokestackTray.tsx:167](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L167)_
683
683
684
684
Use this sparingly to refresh the
685
685
wakeword and NLU models on device
@@ -690,7 +690,7 @@ wakeword and NLU models on device
690
690
691
691
• **sayGreeting**? : _boolean_ (Default: **true**)
692
692
693
- _Defined in [src/SpokestackTray.tsx:173](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L173)_
693
+ _Defined in [src/SpokestackTray.tsx:173](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L173)_
694
694
695
695
Whether to speak the greeting or only display
696
696
a chat bubble with the greet message,
@@ -700,55 +700,55 @@ even if sound is on.
700
700
701
701
• **soundOffImage**? : _React.ReactNode_
702
702
703
- _Defined in [src/SpokestackTray.tsx:177](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L177)_
703
+ _Defined in [src/SpokestackTray.tsx:177](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L177)_
704
704
705
705
Replace the sound off image by passing an <Image />
706
706
707
707
### ` Optional` soundOnImage
708
708
709
709
• **soundOnImage**? : _React.ReactNode_
710
710
711
- _Defined in [src/SpokestackTray.tsx:175](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L175)_
711
+ _Defined in [src/SpokestackTray.tsx:175](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L175)_
712
712
713
713
Replace the sound on image by passing an <Image />
714
714
715
715
### ` Optional` startHeight
716
716
717
717
• **startHeight**? : _number_ (Default: **220**)
718
718
719
- _Defined in [src/SpokestackTray.tsx:179](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L179)_
719
+ _Defined in [src/SpokestackTray.tsx:179](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L179)_
720
720
721
721
Starting height for tray
722
722
723
723
### ` Optional` style
724
724
725
725
• **style**? : _Animated.WithAnimatedValue‹StyleProp‹ViewStyle››_
726
726
727
- _Defined in [src/SpokestackTray.tsx:181](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L181)_
727
+ _Defined in [src/SpokestackTray.tsx:181](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L181)_
728
728
729
729
This style prop is passed to the tray's container
730
730
731
731
### ` Optional` ttsFormat
732
732
733
733
• **ttsFormat**? : _TTSFormat_ (Default: **TTSFormat.TEXT**)
734
734
735
- _Defined in [src/SpokestackTray.tsx:183](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L183)_
735
+ _Defined in [src/SpokestackTray.tsx:183](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L183)_
736
736
737
737
The format for the text passed to Spokestack.synthesize
738
738
739
739
### ` Optional` voice
740
740
741
741
• **voice**? : _string_ (Default: **"demo-male"**)
742
742
743
- _Defined in [src/SpokestackTray.tsx:185](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L185)_
743
+ _Defined in [src/SpokestackTray.tsx:185](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L185)_
744
744
745
745
A key for a voice in Spokestack ASR, passed to Spokestack.synthesize
746
746
747
747
### ` Optional` wakewordModelUrls
748
748
749
749
• **wakewordModelUrls**? : _object_
750
750
751
- _Defined in [src/SpokestackTray.tsx:194](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L194)_
751
+ _Defined in [src/SpokestackTray.tsx:194](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L194)_
752
752
753
753
The URLs of your wakeword model files.
754
754
These models will be automatically downloaded
@@ -853,7 +853,7 @@ spokestackTray.current.say('Here is something for Spokestack to say')
853
853
854
854
▸ **open**(): _void_
855
855
856
- _Defined in [src/SpokestackTray.tsx:587](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L587)_
856
+ _Defined in [src/SpokestackTray.tsx:587](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L587)_
857
857
858
858
Open the tray, greet (if applicable), and listen
859
859
@@ -865,7 +865,7 @@ Open the tray, greet (if applicable), and listen
865
865
866
866
▸ **close**(): _void_
867
867
868
- _Defined in [src/SpokestackTray.tsx:598](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L598)_
868
+ _Defined in [src/SpokestackTray.tsx:598](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L598)_
869
869
870
870
Close the tray, stop listening, and restart wakeword
871
871
@@ -877,7 +877,7 @@ Close the tray, stop listening, and restart wakeword
877
877
878
878
▸ **say**(` input` : string): _Promise‹void›_
879
879
880
- _Defined in [src/SpokestackTray.tsx:610](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L610)_
880
+ _Defined in [src/SpokestackTray.tsx:610](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L610)_
881
881
882
882
Passes the input to Spokestack.synthesize(),
883
883
plays the audio, and adds a speech bubble.
@@ -896,7 +896,7 @@ plays the audio, and adds a speech bubble.
896
896
897
897
▸ **addBubble**(` bubble` : Bubble): _void_
898
898
899
- _Defined in [src/SpokestackTray.tsx:648](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L648)_
899
+ _Defined in [src/SpokestackTray.tsx:648](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L648)_
900
900
901
901
Add a bubble (system or user)
902
902
to the chat interface
@@ -921,7 +921,7 @@ to the chat interface
921
921
922
922
▸ **toggleSilent**(): _Promise‹boolean›_
923
923
924
- _Defined in [src/SpokestackTray.tsx:660](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L660)_
924
+ _Defined in [src/SpokestackTray.tsx:660](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L660)_
925
925
926
926
Toggle silent mode
927
927
@@ -933,7 +933,7 @@ Toggle silent mode
933
933
934
934
▸ **isSilent**(): _boolean_
935
935
936
- _Defined in [src/SpokestackTray.tsx:672](https://github.com/spokestack/react-native-spokestack-tray/blob/7eff57f /src/SpokestackTray.tsx#L672)_
936
+ _Defined in [src/SpokestackTray.tsx:672](https://github.com/spokestack/react-native-spokestack-tray/blob/9aadd2e /src/SpokestackTray.tsx#L672)_
937
937
938
938
Returns whether the tray is in silent mode
939
939
0 commit comments