UNPKG

910 BTypeScriptView Raw
1/**
2 * -------------------------------------------------------------------------------------------
3 * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
4 * See License in the project root for license information.
5 * -------------------------------------------------------------------------------------------
6 */
7/**
8 * @module Constants
9 */
10/**
11 * @constant
12 * A Default API endpoint version for a request
13 */
14export declare const GRAPH_API_VERSION = "v1.0";
15/**
16 * @constant
17 * A Default base url for a request
18 */
19export declare const GRAPH_BASE_URL = "https://graph.microsoft.com/";
20/**
21 * To hold list of the service root endpoints for Microsoft Graph and Graph Explorer for each national cloud.
22 * Set(iterable:Object) is not supported in Internet Explorer. The consumer is recommended to use a suitable polyfill.
23 */
24export declare const GRAPH_URLS: Set<string>;