blob: b02a79e0caa6f68c587209f37a7e431729520d8f [file] [log] [blame]
// Copyright 2018 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.textinputmod;
[Discoverable]
interface TextInputModReceiver {
UserEnteredText(string text) -> ();
UserCanceled() -> ();
};
[Discoverable]
interface TextInputMod {
ListenForTextInput(TextInputModReceiver receiver) -> ();
};