Browse
For agents
About
BeyondWords – AI audio for publishers
/
4.2.4
BeyondWords – AI audio for publishers
v4.2.4
Switch version
7.1.0
trunk
4.0.0
4.0.1
4.0.2
4.0.3
4.0.4
4.0.5
4.0.6
4.1.0
4.1.1
4.1.2
4.2.0
4.2.1
4.2.2
4.2.3
4.2.4
4.3.0
4.4.0
4.5.0
4.5.1
4.6.0
4.6.1
4.6.2
4.7.0
All 43 releases
Overview
Code
speechkit
/
src
/
Core
/
Settings
/
store
/
selectors.js
selectors.js
in BeyondWords – AI audio for publishers 4.2.4, at src/Core/Settings/store/selectors.js
20 lines
343 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
const
selectors
=
{
2
getIsRegeneratingAudio
(
state
)
{
3
return
state
.
isRegeneratingAudio
;
4
}
,
5
getLanguages
(
state
)
{
6
return
state
.
languages
;
7
}
,
8
getPlayerStyles
(
state
)
{
9
return
state
.
playerStyles
;
10
}
,
11
getSettings
(
state
)
{
12
return
state
.
settings
;
13
}
,
14
getVoices
(
state
)
{
15
return
state
.
voices
;
16
}
,
17
}
;
18
19
export
default
selectors
;
20