@microsoft/mgt
Version:
The Microsoft Graph Toolkit
18 lines (17 loc) • 615 B
TypeScript
/**
* -------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
* See License in the project root for license information.
* -------------------------------------------------------------------------------------------
*/
import { Graph } from '../Graph';
/**
* ProxyGraph Instance
*
* @export
* @class ProxyGraph
* @extends {Graph}
*/
export declare class ProxyGraph extends Graph {
constructor(baseUrl: string, getCustomHeaders: () => Promise<object>);
}