blob: ca91b51861c11a093247df27ec8fc521923646e1 [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(string words, uint64 token) -> (uint64 token);
};