UNPKG

636 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 */
7import { AuthProviderCallback } from "./IAuthProviderCallback";
8/**
9 * @interface
10 * Signature that holds authProvider
11 * @callback - The anonymous callback function which takes a single param
12 */
13export declare type AuthProvider = (done: AuthProviderCallback) => void;