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