Clean up some of the extensions (#8267)

* 💄

* prune unused code

* more cleanup

* remove abunch of used code
This commit is contained in:
Anthony Dresser
2019-11-08 11:44:43 -08:00
committed by GitHub
parent 738ca479e4
commit 7f7052ad42
94 changed files with 366 additions and 1158 deletions

View File

@@ -3,8 +3,6 @@
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import * as azdata from 'azdata';
/**
@@ -30,7 +28,7 @@ export interface Tenant {
/**
* Represents a resource exposed by an Azure Active Directory
*/
export interface Resource {
interface Resource {
/**
* Identifier of the resource
*/
@@ -42,25 +40,10 @@ export interface Resource {
endpoint: string;
}
/**
* Represents the arguments that identify an instantiation of the AAD account provider
*/
export interface Arguments {
/**
* Host of the authority
*/
host: string;
/**
* Identifier of the client application
*/
clientId: string;
}
/**
* Represents settings for an AAD account provider
*/
export interface Settings {
interface Settings {
/**
* Host of the authority
*/
@@ -138,7 +121,7 @@ export interface AzureAccountProviderMetadata extends azdata.AccountProviderMeta
/**
* Properties specific to an Azure account
*/
export interface AzureAccountProperties {
interface AzureAccountProperties {
/**
* Whether or not the account is a Microsoft account
*/
@@ -163,7 +146,7 @@ export interface AzureAccount extends azdata.Account {
/**
* Token returned from a request for an access token
*/
export interface AzureAccountSecurityToken {
interface AzureAccountSecurityToken {
/**
* Access token, itself
*/