UNPKG

@constructor-io/constructorio-connect-cli

Version:

CLI tool to enable users to interface with the Constructor Connect Ecosystem

16 lines 697 B
import { Command } from "@oclif/core"; export declare abstract class RefreshConnectionsCommand extends Command { static description: string; abstract runCommand(): Promise<any>; run(): Promise<any>; /** * Checks if the connections list should be automatically refreshed if * 1) IS_CI environment variable is not true; and * 2) AUTO_REFRESH_CONNECTIONS environment variable set to "true", true, * or if it is undefined (in which case it will be set to true). * * @returns {boolean} - true if the connections list should be refreshed, false otherwise. */ private shouldAutoRefreshConnections; } //# sourceMappingURL=refresh-connections.d.ts.map