npm package diff
Package: @forge/cli-shared
Versions: 6.8.0-next.11 - 6.8.0-next.12
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
@@ -30,9 +30,9 @@
promptForText(message: string, defaultValue?: string): Promise<string>;
promptForSecret(message: string): Promise<string>;
promptForList<T extends string>(message: string, choices: T[], config?: {
format?: (choice: T) => string;
- }): Promise<T>;
+ }, pageSize?: number): Promise<T>;
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;