| // Copyright 2016 The Fuchsia Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| library fuchsia.tts; | |
| @discoverable | |
| protocol TtsService { | |
| /// Speak the string of words provided. Return the provided token to the | |
| /// caller when the speaking has finished. | |
| Say(struct { | |
| words string; | |
| token uint64; | |
| }) -> (struct { | |
| token uint64; | |
| }); | |
| }; |