@forge/cli

12.11.012.12.0-next.9
out/command-line/register-environments-commands.d.ts
out/command-line/register-environments-commands.d.ts
+4−1
Index: package/out/command-line/register-environments-commands.d.ts
===================================================================
--- package/out/command-line/register-environments-commands.d.ts
+++ package/out/command-line/register-environments-commands.d.ts
@@ -2,14 +2,17 @@
 import { Dependencies } from './dependency-injection';
 import { CreateEnvironmentCommand } from '../environment/create-environment';
 import { ListEnvironmentCommand } from '../environment/list-environment';
 import { DeleteEnvironmentCommand } from '../environment/delete-environment';
+interface ListEnvironmentArgs {
+    nonInteractive?: boolean;
+}
 interface RemoveEnvironmentArgs {
     environment?: string[];
     nonInteractive?: boolean;
 }
 export declare const createEnvironmentHandler: (ui: UI, createEnvironmentCommand: CreateEnvironmentCommand, environmentKey?: string) => Promise<void>;
-export declare const listEnvironmentHandler: (ui: UI, listEnvironmentCommand: ListEnvironmentCommand) => Promise<void>;
+export declare const listEnvironmentHandler: (ui: UI, listEnvironmentCommand: ListEnvironmentCommand, options?: ListEnvironmentArgs) => Promise<void>;
 export declare const deleteEnvironmentHandler: (ui: UI, options: RemoveEnvironmentArgs, listEnvironmentCommand: ListEnvironmentCommand, deleteEnvironmentCommand: DeleteEnvironmentCommand) => Promise<void>;
 export declare const registerCommands: (deps: Dependencies) => void;
 export {};
 //# sourceMappingURL=register-environments-commands.d.ts.map
\ No newline at end of file