blob: 20b6cf3f2443c5819a2437865885ff5d4a4a93bd [file] [log] [blame]
// Copyright 2019 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.diagnostics;
/// Enum used to specify the output format for
/// Reader results.
type Format = strict enum {
/// Dump read results per the Diagnostics Json
/// Schema specifications.
JSON = 1;
/// Dump read results per the Iquery text specifications.
TEXT = 2;
};