@sussudio/base
Version:
Internal APIs for VS Code's utilities and user interface building blocks.
16 lines (14 loc) • 731 B
text/typescript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as platform from '../common/platform.mjs';
/**
* Gets the detected default shell for the _system_, not to be confused with VS Code's _default_
* shell that the terminal uses by default.
* @param os The platform to detect the shell of.
*/
export declare function getSystemShell(
os: platform.OperatingSystem,
env: platform.IProcessEnvironment,
): Promise<string>;