UNPKG

@milkmaccya2/hostswitch

Version:

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

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