blob: 5247936b3f38633914a7a6462becd76b1f628501 [file] [log] [blame]
// 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;
});
};