UNPKG

@datadog/datadog-api-client

Version:
14 lines (13 loc) 748 B
/** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. */ import { UnparsedObject } from "../../datadog-api-client-common/util"; /** * Color-coding direction: `increase_better` (green on rise), `decrease_better` (green on drop), or `neutral` (no color). */ export declare type QueryValueWidgetComparisonDirectionality = typeof INCREASE_BETTER | typeof DECREASE_BETTER | typeof NEUTRAL | UnparsedObject; export declare const INCREASE_BETTER = "increase_better"; export declare const DECREASE_BETTER = "decrease_better"; export declare const NEUTRAL = "neutral";