astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
9 lines (8 loc) • 328 B
TypeScript
import type { AstroLogger } from '../../core/logger/core.js';
import { type Flags } from '../flags.js';
interface TelemetryOptions {
flags: Flags;
}
export declare function notify(logger: AstroLogger): Promise<void>;
export declare function update(subcommand: string, { flags }: TelemetryOptions): Promise<void>;
export {};