@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
19 lines (18 loc) • 971 B
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";
/**
* The definition of `OutputSchemaParametersType` object.
*/
export declare type OutputSchemaParametersType = typeof STRING | typeof NUMBER | typeof BOOLEAN | typeof OBJECT | typeof ARRAY_STRING | typeof ARRAY_NUMBER | typeof ARRAY_BOOLEAN | typeof ARRAY_OBJECT | UnparsedObject;
export declare const STRING = "STRING";
export declare const NUMBER = "NUMBER";
export declare const BOOLEAN = "BOOLEAN";
export declare const OBJECT = "OBJECT";
export declare const ARRAY_STRING = "ARRAY_STRING";
export declare const ARRAY_NUMBER = "ARRAY_NUMBER";
export declare const ARRAY_BOOLEAN = "ARRAY_BOOLEAN";
export declare const ARRAY_OBJECT = "ARRAY_OBJECT";