@milkmaccya2/hostswitch
Version:
A simple CLI tool to manage and switch between multiple hosts file profiles for different development environments
9 lines • 388 B
TypeScript
import type { ICommand, ICommandResult } from '../../interfaces';
import type { HostSwitchFacade } from '../HostSwitchFacade';
export declare class ShowProfileCommand implements ICommand {
private facade;
private profileName;
constructor(facade: HostSwitchFacade, profileName: string);
execute(): Promise<ICommandResult>;
}
//# sourceMappingURL=ShowProfileCommand.d.ts.map