astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
22 lines (21 loc) • 648 B
TypeScript
import type { Logger } from '../../../core/logger/core.js';
import type { Clipboard, DebugInfoFormatter, DebugInfoProvider } from '../definitions.js';
interface Options {
debugInfoProvider: DebugInfoProvider;
getDebugInfoFormatter: (options: {
pretty: boolean;
}) => DebugInfoFormatter;
logger: Logger;
clipboard: Clipboard;
}
export declare const infoCommand: {
help: {
commandName: string;
tables: {
Flags: [string, string][];
};
description: string;
};
run({ debugInfoProvider, getDebugInfoFormatter, logger, clipboard }: Options): Promise<void>;
};
export {};