npm package diff

Package: @forge/cli-shared

Versions: 6.6.1-next.10 - 6.6.1-next.11

File: package/out/ui/command-line-ui.d.ts

Index: package/out/ui/command-line-ui.d.ts
===================================================================
--- package/out/ui/command-line-ui.d.ts
+++ package/out/ui/command-line-ui.d.ts
@@ -31,12 +31,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>;
     table<Key extends string>(head: [Key, string][], data: Record<Key, TableCell>[] | undefined | null, { json, emptyMessage, preMessage, postMessage, format, groupRows }?: TableOptions<Key>): void;
     private formatTableValue;
     private shouldLogTableCell;