UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

30 lines (29 loc) 1.8 kB
/** * 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 palette to apply. */ export declare type WidgetPalette = typeof BLUE | typeof CUSTOM_BACKGROUND | typeof CUSTOM_IMAGE | typeof CUSTOM_TEXT | typeof GRAY_ON_WHITE | typeof GREY | typeof GREEN | typeof ORANGE | typeof RED | typeof RED_ON_WHITE | typeof WHITE_ON_GRAY | typeof WHITE_ON_GREEN | typeof GREEN_ON_WHITE | typeof WHITE_ON_RED | typeof WHITE_ON_YELLOW | typeof YELLOW_ON_WHITE | typeof BLACK_ON_LIGHT_YELLOW | typeof BLACK_ON_LIGHT_GREEN | typeof BLACK_ON_LIGHT_RED | UnparsedObject; export declare const BLUE = "blue"; export declare const CUSTOM_BACKGROUND = "custom_bg"; export declare const CUSTOM_IMAGE = "custom_image"; export declare const CUSTOM_TEXT = "custom_text"; export declare const GRAY_ON_WHITE = "gray_on_white"; export declare const GREY = "grey"; export declare const GREEN = "green"; export declare const ORANGE = "orange"; export declare const RED = "red"; export declare const RED_ON_WHITE = "red_on_white"; export declare const WHITE_ON_GRAY = "white_on_gray"; export declare const WHITE_ON_GREEN = "white_on_green"; export declare const GREEN_ON_WHITE = "green_on_white"; export declare const WHITE_ON_RED = "white_on_red"; export declare const WHITE_ON_YELLOW = "white_on_yellow"; export declare const YELLOW_ON_WHITE = "yellow_on_white"; export declare const BLACK_ON_LIGHT_YELLOW = "black_on_light_yellow"; export declare const BLACK_ON_LIGHT_GREEN = "black_on_light_green"; export declare const BLACK_ON_LIGHT_RED = "black_on_light_red";