add voices value returned by the backends

This commit is contained in:
Francois Caddet 2020-09-26 23:03:56 +02:00
parent 47cbb80595
commit 8c8dc0ae9f
3 changed files with 3 additions and 0 deletions

View File

@ -75,6 +75,7 @@ impl Backend for SpeechDispatcher {
pitch: true,
volume: true,
is_speaking: true,
voices: false,
utterance_callbacks: true,
}
}

View File

@ -47,6 +47,7 @@ impl Backend for Web {
pitch: true,
volume: true,
is_speaking: true,
voices: true,
utterance_callbacks: true,
}
}

View File

@ -140,6 +140,7 @@ impl Backend for WinRT {
pitch: true,
volume: true,
is_speaking: true,
voices: true,
utterance_callbacks: true,
}
}