Skip to content
This repository was archived by the owner on May 6, 2022. It is now read-only.

Commit 4c77280

Browse files
committed
chore: release 0.4.0
1 parent 9aadd2e commit 4c77280

File tree

3 files changed

+46
-46
lines changed

3 files changed

+46
-46
lines changed

README.md

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ These functions are available as exports from react-native-spokestack-tray
239239
240240
▸ **listen**(): _Promise‹boolean›_
241241
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)_
243243
244244
Tell Spokestack to start listening.
245245
This will also open the tray.
@@ -260,7 +260,7 @@ await listen()
260260
261261
▸ **stopListening**(): _Promise‹boolean›_
262262
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)_
264264
265265
Tell Spokestack to stop listening with ASR.
266266
@@ -280,7 +280,7 @@ stopListening()
280280
281281
▸ **isListening**(): _boolean_
282282
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)_
284284
285285
Returns whether Spokestack is currently listening with ASR
286286
@@ -300,7 +300,7 @@ if (isListening()) {
300300
301301
▸ **isStarted**(): _boolean_
302302
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)_
304304
305305
Returns whether Spokestack has started the speech pipeline.
306306
The tray starts the pipeline when mounted, but this is
@@ -322,7 +322,7 @@ if (isStarted()) {
322322
323323
▸ **isInitialized**(): _boolean_
324324
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)_
326326
327327
Returns whether Spokestack has been initialized.
328328
The tray initializes Spokestack on mount, but is an
@@ -344,7 +344,7 @@ if (isInitialized()) {
344344
345345
▸ **addListener**(`type`: ListenerType, `fn`: Listener): _void_
346346
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)_
348348
349349
Add a Spokestack listener to any of Spokestack's events
350350
@@ -376,7 +376,7 @@ addListener(SpokestackListenerType.INIT, initialized)
376376
377377
▸ **removeListener**(`type`: ListenerType, `fn`: Listener): _void_
378378
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)_
380380
381381
Remove a Spokestack listener
382382
@@ -405,7 +405,7 @@ removeListener(SpokestackListenerType.INIT, initialized)
405405
406406
▸ **addListenerOnce**(`type`: ListenerType, `fn`: Listener): _void_
407407
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)_
409409
410410
Adds a Spokestack listener to any of Spokestack's events
411411
to be removed the first time it runs.
@@ -439,15 +439,15 @@ addListenerOnce(SpokestackListenerType.INIT, () => {
439439
440440
• **buttonWidth**? : _number_ (Default: **60**)
441441
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)_
443443
444444
Width (and height) of the mic button
445445
446446
### clientId
447447
448448
• **clientId**: _string_
449449
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)_
451451
452452
Your Spokestack tokens generated in your Spokestack account
453453
at https://spokestack.io/account.
@@ -458,7 +458,7 @@ This is from the "ID" field.
458458
459459
• **clientSecret**: _string_
460460
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)_
462462
463463
Your Spokestack tokens generated in your Spokestack account
464464
at https://spokestack.io/account.
@@ -469,39 +469,39 @@ This is from the "secret" field.
469469
470470
• **closeDelay**? : _number_ (Default: **0**)
471471
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)_
473473
474474
How long to wait to close the tray after speaking (ms)
475475
476476
### `Optional` debug
477477
478478
• **debug**? : _boolean_
479479
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)_
481481
482482
Show debug messages from react-native-spokestack
483483
484484
### `Optional` duration
485485
486486
• **duration**? : _number_ (Default: **500**)
487487
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)_
489489
490490
Duration for the tray animation (ms)
491491
492492
### `Optional` easing
493493
494494
• **easing**? : _EasingFunction_ (Default: **Easing.bezier**)
495495
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)_
497497
498498
Easing function for the tray animation
499499
500500
### `Optional` editTranscript
501501
502502
• **editTranscript**? : _function_
503503
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)_
505505
506506
Edit the transcript before classification
507507
and before the user response bubble is shown.
@@ -520,7 +520,7 @@ and before the user response bubble is shown.
520520
521521
• **exitNodes**? : _string[]_
522522
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)_
524524
525525
All nodes in this array should end
526526
the conversation and close the tray
@@ -529,7 +529,7 @@ the conversation and close the tray
529529
530530
• **fontFamily**? : _string_
531531
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)_
533533
534534
Font to use for "LISTENING...", "LOADING...",
535535
and chat bubble text.
@@ -538,7 +538,7 @@ and chat bubble text.
538538
539539
• **gradientColors**? : _string[]_
540540
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)_
542542
543543
Colors for the linear gradient shown when listening
544544
Can be any number of colors (recommended: 2-3)
@@ -547,7 +547,7 @@ Can be any number of colors (recommended: 2-3)
547547
548548
• **greet**? : _boolean_ (Default: **false**)
549549
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)_
551551
552552
Whether to greet the user with a welcome message
553553
when the tray opens.
@@ -557,7 +557,7 @@ Note: `handleIntent` must respond to the "greet" intent.
557557
558558
• **handleIntent**: _function_
559559
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)_
561561
562562
This function takes an intent from the NLU
563563
and returns an object with a unique conversation
@@ -583,7 +583,7 @@ if sound has been turned off.
583583
584584
• **haptic**? : _boolean_ (Default: **true**)
585585
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)_
587587
588588
Set this to false to disable the haptic
589589
that gets played whenever the tray starts listening.
@@ -592,15 +592,15 @@ that gets played whenever the tray starts listening.
592592
593593
• **minHeight**? : _number_ (Default: **170**)
594594
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)_
596596
597597
Minimum height for the tray
598598
599599
### nluModelUrls
600600
601601
• **nluModelUrls**: _object_
602602
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)_
604604
605605
The URLs of your NLU model files.
606606
These models will be automatically downloaded
@@ -620,7 +620,7 @@ See https://spokestack.io/docs/Concepts/nlu
620620
621621
• **onClose**? : _function_
622622
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)_
624624
625625
Called whenever the tray has closed
626626
@@ -632,7 +632,7 @@ Called whenever the tray has closed
632632
633633
• **onError**? : _function_
634634
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)_
636636
637637
Called whenever there's an error from Spokestack
638638
@@ -650,7 +650,7 @@ Called whenever there's an error from Spokestack
650650
651651
• **onOpen**? : _function_
652652
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)_
654654
655655
Called whenever the tray has opened
656656
@@ -662,15 +662,15 @@ Called whenever the tray has opened
662662
663663
• **orientation**? : _"left" | "right"_
664664
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)_
666666
667667
The tray button can be oriented on either side of the screen
668668
669669
### `Optional` primaryColor
670670
671671
• **primaryColor**? : _string_ (Default: **"**)
672672
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)_
674674
675675
This color is used to theme the tray
676676
and is used in the mic button and speech bubbles.
@@ -679,7 +679,7 @@ and is used in the mic button and speech bubbles.
679679
680680
• **refreshModels**? : _boolean_
681681
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)_
683683
684684
Use this sparingly to refresh the
685685
wakeword and NLU models on device
@@ -690,7 +690,7 @@ wakeword and NLU models on device
690690
691691
• **sayGreeting**? : _boolean_ (Default: **true**)
692692
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)_
694694
695695
Whether to speak the greeting or only display
696696
a chat bubble with the greet message,
@@ -700,55 +700,55 @@ even if sound is on.
700700
701701
• **soundOffImage**? : _React.ReactNode_
702702
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)_
704704
705705
Replace the sound off image by passing an <Image />
706706
707707
### `Optional` soundOnImage
708708
709709
• **soundOnImage**? : _React.ReactNode_
710710
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)_
712712
713713
Replace the sound on image by passing an <Image />
714714
715715
### `Optional` startHeight
716716
717717
• **startHeight**? : _number_ (Default: **220**)
718718
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)_
720720
721721
Starting height for tray
722722
723723
### `Optional` style
724724
725725
• **style**? : _Animated.WithAnimatedValue‹StyleProp‹ViewStyle››_
726726
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)_
728728
729729
This style prop is passed to the tray's container
730730
731731
### `Optional` ttsFormat
732732
733733
• **ttsFormat**? : _TTSFormat_ (Default: **TTSFormat.TEXT**)
734734
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)_
736736
737737
The format for the text passed to Spokestack.synthesize
738738
739739
### `Optional` voice
740740
741741
• **voice**? : _string_ (Default: **"demo-male"**)
742742
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)_
744744
745745
A key for a voice in Spokestack ASR, passed to Spokestack.synthesize
746746
747747
### `Optional` wakewordModelUrls
748748
749749
• **wakewordModelUrls**? : _object_
750750
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)_
752752
753753
The URLs of your wakeword model files.
754754
These models will be automatically downloaded
@@ -853,7 +853,7 @@ spokestackTray.current.say('Here is something for Spokestack to say')
853853
854854
▸ **open**(): _void_
855855
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)_
857857
858858
Open the tray, greet (if applicable), and listen
859859
@@ -865,7 +865,7 @@ Open the tray, greet (if applicable), and listen
865865
866866
▸ **close**(): _void_
867867
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)_
869869
870870
Close the tray, stop listening, and restart wakeword
871871
@@ -877,7 +877,7 @@ Close the tray, stop listening, and restart wakeword
877877
878878
▸ **say**(`input`: string): _Promise‹void›_
879879
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)_
881881
882882
Passes the input to Spokestack.synthesize(),
883883
plays the audio, and adds a speech bubble.
@@ -896,7 +896,7 @@ plays the audio, and adds a speech bubble.
896896
897897
▸ **addBubble**(`bubble`: Bubble): _void_
898898
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)_
900900
901901
Add a bubble (system or user)
902902
to the chat interface
@@ -921,7 +921,7 @@ to the chat interface
921921
922922
▸ **toggleSilent**(): _Promise‹boolean›_
923923
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)_
925925
926926
Toggle silent mode
927927
@@ -933,7 +933,7 @@ Toggle silent mode
933933
934934
▸ **isSilent**(): _boolean_
935935
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)_
937937
938938
Returns whether the tray is in silent mode
939939

0 commit comments

Comments
 (0)