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
14 changes: 12 additions & 2 deletions src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -667,9 +667,14 @@ export interface PythonProjectCreatorOptions {
name: string;

/**
* Optional path that may be provided as a root for the project.
* Path provided as the root for the project.
*/
uri?: Uri;
rootUri: Uri;

/**
* Boolean indicating whether the project should be created without any user input.
*/
quickCreate?: boolean;
}

/**
Expand Down Expand Up @@ -701,6 +706,11 @@ export interface PythonProjectCreator {
*/
readonly iconPath?: IconPath;

/**
* A flag indicating whether the project creator supports quick create where no user input is required.
*/
readonly supportsQuickCreate?: boolean;

/**
* Creates a new Python project or projects.
* @param options - Optional parameters for creating the Python project.
Expand Down