UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

19 lines (18 loc) 990 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"; /** * Dashboard global time live_span selection */ export declare type DashboardGlobalTimeLiveSpan = typeof PAST_FIFTEEN_MINUTES | typeof PAST_ONE_HOUR | typeof PAST_FOUR_HOURS | typeof PAST_ONE_DAY | typeof PAST_TWO_DAYS | typeof PAST_ONE_WEEK | typeof PAST_ONE_MONTH | typeof PAST_THREE_MONTHS | UnparsedObject; export declare const PAST_FIFTEEN_MINUTES = "15m"; export declare const PAST_ONE_HOUR = "1h"; export declare const PAST_FOUR_HOURS = "4h"; export declare const PAST_ONE_DAY = "1d"; export declare const PAST_TWO_DAYS = "2d"; export declare const PAST_ONE_WEEK = "1w"; export declare const PAST_ONE_MONTH = "1mo"; export declare const PAST_THREE_MONTHS = "3mo";