UNPKG

@milkmaccya2/hostswitch

Version:

A simple CLI tool to manage and switch between multiple hosts file profiles for different development environments

10 lines 428 B
import type { ICommand, ICommandResult } from '../../interfaces'; import type { HostSwitchFacade } from '../HostSwitchFacade'; export declare class DeleteProfileCommand implements ICommand { private facade; private profileName; private force; constructor(facade: HostSwitchFacade, profileName: string, force?: boolean); execute(): Promise<ICommandResult>; } //# sourceMappingURL=DeleteProfileCommand.d.ts.map