UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

22 lines (21 loc) 1.34 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-on-color palette to highlight replaced text. */ export declare type TableWidgetTextFormatPalette = typeof WHITE_ON_RED | typeof WHITE_ON_YELLOW | typeof WHITE_ON_GREEN | typeof BLACK_ON_LIGHT_RED | typeof BLACK_ON_LIGHT_YELLOW | typeof BLACK_ON_LIGHT_GREEN | typeof RED_ON_WHITE | typeof YELLOW_ON_WHITE | typeof GREEN_ON_WHITE | typeof CUSTOM_BG | typeof CUSTOM_TEXT | UnparsedObject; export declare const WHITE_ON_RED = "white_on_red"; export declare const WHITE_ON_YELLOW = "white_on_yellow"; export declare const WHITE_ON_GREEN = "white_on_green"; export declare const BLACK_ON_LIGHT_RED = "black_on_light_red"; 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 RED_ON_WHITE = "red_on_white"; export declare const YELLOW_ON_WHITE = "yellow_on_white"; export declare const GREEN_ON_WHITE = "green_on_white"; export declare const CUSTOM_BG = "custom_bg"; export declare const CUSTOM_TEXT = "custom_text";