Refresh token with SqlToolService session update (#21308)

This commit is contained in:
Cheena Malhotra
2022-11-29 15:26:15 -08:00
committed by GitHub
parent 0479aab107
commit 23dfd690a6
7 changed files with 41 additions and 14 deletions

View File

@@ -446,6 +446,22 @@ declare module 'azdata' {
showOnConnectionDialog?: boolean;
}
// Object Explorer interfaces --------------------------------
export interface ObjectExplorerSession {
/**
* Authentication token for the current session.
*/
token?: accounts.AccountSecurityToken | undefined;
}
export interface ExpandNodeInfo {
/**
* Authentication token for the current session.
*/
token?: accounts.AccountSecurityToken | undefined;
}
// End Object Explorer interfaces ----------------------------
export interface TaskInfo {
targetLocation?: string;
}