UNPKG

astro

Version:

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

18 lines (17 loc) 448 B
import type { Logger } from '../../../core/logger/core.js'; import type { KeyGenerator } from '../definitions.js'; interface Options { logger: Logger; keyGenerator: KeyGenerator; } export declare const createKeyCommand: { help: { commandName: string; tables: { Flags: [string, string][]; }; description: string; }; run({ logger, keyGenerator }: Options): Promise<void>; }; export {};