debug-server-next
Version:
Dev server for hippy-core.
12 lines (11 loc) • 484 B
JavaScript
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// TODO(crbug.com/1167717): Make this a const enum again
// eslint-disable-next-line rulesdir/const_enum
export var Events;
(function (Events) {
Events["CursorChanged"] = "CursorChanged";
Events["TextChanged"] = "TextChanged";
Events["SuggestionChanged"] = "SuggestionChanged";
})(Events || (Events = {}));