npm package diff

Package: @forge/cli-shared

Versions: 6.8.0-next.11 - 6.8.0-next.12

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
@@ -5,9 +5,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>;
 }
 export declare type TableCell = string | boolean | null | undefined;