UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

22 lines (21 loc) 705 B
import type { Logger } from '../../../core/logger/core.js'; import type { CommandExecutor, OperatingSystemProvider } from '../../definitions.js'; import type { CloudIdeProvider } from '../definitions.js'; interface Options { url: string; operatingSystemProvider: OperatingSystemProvider; logger: Logger; commandExecutor: CommandExecutor; cloudIdeProvider: CloudIdeProvider; } export declare const openDocsCommand: { help: { commandName: string; tables: { Flags: [string, string][]; }; description: string; }; run({ url, operatingSystemProvider, logger, commandExecutor, cloudIdeProvider }: Options): Promise<void>; }; export {};