Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/client/proposedApiTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export interface ProposedExtensionAPI {
/**
* Sets the active environment path for the python extension for the resource. Configuration target will always
* be the workspace folder.
* @param environment : Full path to environment folder or python executable for the environment. Can also pass
* the environment itself.
* @param environment : If string, it represents the full path to environment folder or python executable
* for the environment. Otherwise it can be {@link Environment} or {@link EnvironmentPath} itself.
* @param resource : [optional] File or workspace to scope to a particular workspace folder.
*/
updateActiveEnvironmentPath(
Expand Down Expand Up @@ -55,8 +55,8 @@ export interface ProposedExtensionAPI {
refreshEnvironments(options?: RefreshOptions, token?: CancellationToken): Promise<void>;
/**
* Returns details for the given environment, or `undefined` if the env is invalid.
* @param environment : Full path to environment folder or python executable for the environment. Can also pass
* the environment itself.
* @param environment : If string, it represents the full path to environment folder or python executable
* for the environment. Otherwise it can be {@link Environment} or {@link EnvironmentPath} itself.
*/
resolveEnvironment(
environment: Environment | EnvironmentPath | string,
Expand Down