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 | import { GraphError } from "./GraphError";
|
8 | /**
|
9 | * @interface
|
10 | * Signature to define the GraphRequest callback
|
11 | * @callback - The anonymous callback function
|
12 | */
|
13 | export declare type GraphRequestCallback = (error: GraphError, response: any, rawResponse?: any) => void;
|