@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
20 lines (19 loc) • 1.21 kB
TypeScript
/**
* 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";
/**
* ID of the device the Synthetics monitor is running on. Same as `SyntheticsDeviceID`.
*/
export declare type MonitorDeviceID = typeof LAPTOP_LARGE | typeof TABLET | typeof MOBILE_SMALL | typeof CHROME_LAPTOP_LARGE | typeof CHROME_TABLET | typeof CHROME_MOBILE_SMALL | typeof FIREFOX_LAPTOP_LARGE | typeof FIREFOX_TABLET | typeof FIREFOX_MOBILE_SMALL | UnparsedObject;
export declare const LAPTOP_LARGE = "laptop_large";
export declare const TABLET = "tablet";
export declare const MOBILE_SMALL = "mobile_small";
export declare const CHROME_LAPTOP_LARGE = "chrome.laptop_large";
export declare const CHROME_TABLET = "chrome.tablet";
export declare const CHROME_MOBILE_SMALL = "chrome.mobile_small";
export declare const FIREFOX_LAPTOP_LARGE = "firefox.laptop_large";
export declare const FIREFOX_TABLET = "firefox.tablet";
export declare const FIREFOX_MOBILE_SMALL = "firefox.mobile_small";