mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-27 12:51:41 +00:00
* initial commit for closing terminal * added extra case * lint changes and hostee explorer fixes * fixed lint errors * fixed compile error * fixed review comments
15 lines
388 B
TypeScript
15 lines
388 B
TypeScript
import { AuthType } from "../AuthType";
|
|
import * as DataModels from "../Contracts/DataModels";
|
|
import { ApiType } from "../UserContext";
|
|
|
|
export interface TerminalProps {
|
|
authToken: string;
|
|
notebookServerEndpoint: string;
|
|
terminalEndpoint: string;
|
|
databaseAccount: DataModels.DatabaseAccount;
|
|
authType: AuthType;
|
|
apiType: ApiType;
|
|
subscriptionId: string;
|
|
tabId: string;
|
|
}
|