npm package diff
Package: @forge/cli-shared
Versions: 6.6.1-next.10 - 6.6.1-next.11
File: package/out/ui/ui.d.ts
Index: package/out/ui/ui.d.ts
===================================================================
--- package/out/ui/ui.d.ts
+++ package/out/ui/ui.d.ts
@@ -6,12 +6,9 @@
promptForSecret(message: string): Promise<string>;
promptForList<T extends string>(message: string, choices: T[], config?: {
format?: (choice: T) => string;
}): Promise<T>;
- promptForMultiSelectList<T extends string>(message: string, choices: T[], config?: {
- format?: (choice: T) => string;
- }): Promise<T[]>;
- promptForTable(message: string, infoMessage: string, columns: string[], choices: object[]): Promise<number[]>;
+ promptForTable(message: string, infoMessage: string, columns: string[], choices: object[], isBorderless?: boolean): Promise<number[]>;
promptForSingleChoiceTable(message: string, infoMessage: string, columns: string[], choices: object[]): Promise<number>;
}
export declare type TableCell = string | boolean | null | undefined;
export declare type TableOptions<Key extends string> = {