import { SitesCommand } from '../../SitesCommand'; import { ApacheSite, NginxSite, Site } from '@radic/hosting'; export default class EditCommand extends SitesCommand { server: string; open: boolean; handle(name?: string): Promise; protected editConfigFile(site: Site): Promise; protected editApacheSite(site: ApacheSite): Promise; protected editNginxSite(site: NginxSite): Promise; }