blob: 78b2beef4b812156fb8250477972aad6883ac6a7 [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.ui.scenic;
using fuchsia.ui.gfx;
using fuchsia.ui.input;
using fuchsia.ui.views;
type Command = strict resource union {
1: gfx fuchsia.ui.gfx.Command;
// NOTE(https://fxbug.dev/432713692): The real @available annotation is:
// @available(deprecated=10, note="No implementation")
3: views fuchsia.ui.views.Command;
// NOTE(https://fxbug.dev/432713692): The real @available annotation is:
// @available(deprecated=10, note="No implementation")
4: input fuchsia.ui.input.Command;
};