mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-24 19:31:36 +00:00
* Use window messaging to pass sensitive data to terminal iframe * Address feedback * Format * Update * Add tests
14 lines
371 B
TypeScript
14 lines
371 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;
|
|
}
|