- Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathIAuthProvider.ts
15 lines (13 loc) · 617 Bytes
/
IAuthProvider.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
* -------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
* See License in the project root for license information.
* -------------------------------------------------------------------------------------------
*/
import{AuthProviderCallback}from"./IAuthProviderCallback";
/**
* @interface
* Signature that holds authProvider
* @callback - The anonymous callback function which takes a single param
*/
exporttypeAuthProvider=(done: AuthProviderCallback)=>void;