🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
45
node_modules/astro/dist/core/messages.d.ts
generated
vendored
Normal file
45
node_modules/astro/dist/core/messages.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
import type { ResolvedServerUrls } from 'vite';
|
||||
import type { ZodError } from 'zod';
|
||||
import { type ErrorWithMetadata } from './errors/index.js';
|
||||
/** Display */
|
||||
export declare function req({ url, statusCode, reqTime, }: {
|
||||
url: string;
|
||||
statusCode: number;
|
||||
reqTime?: number;
|
||||
}): string;
|
||||
export declare function reload({ file }: {
|
||||
file: string;
|
||||
}): string;
|
||||
export declare function hmr({ file, style }: {
|
||||
file: string;
|
||||
style?: boolean;
|
||||
}): string;
|
||||
/** Display server host and startup time */
|
||||
export declare function serverStart({ startupTime, resolvedUrls, host, base, isRestart, }: {
|
||||
startupTime: number;
|
||||
resolvedUrls: ResolvedServerUrls;
|
||||
host: string | boolean;
|
||||
base: string;
|
||||
isRestart?: boolean;
|
||||
}): string;
|
||||
export declare function telemetryNotice(): string;
|
||||
export declare function telemetryEnabled(): string;
|
||||
export declare function telemetryDisabled(): string;
|
||||
export declare function telemetryReset(): string;
|
||||
export declare function fsStrictWarning(): string;
|
||||
export declare function prerelease({ currentVersion }: {
|
||||
currentVersion: string;
|
||||
}): string;
|
||||
export declare function success(message: string, tip?: string): string;
|
||||
export declare function failure(message: string, tip?: string): string;
|
||||
export declare function cancelled(message: string, tip?: string): string;
|
||||
export declare function getNetworkLogging(host: string | boolean): 'none' | 'host-to-expose' | 'visible';
|
||||
export declare function formatConfigErrorMessage(err: ZodError): string;
|
||||
export declare function formatErrorMessage(err: ErrorWithMetadata, args?: string[]): string;
|
||||
export declare function printHelp({ commandName, headline, usage, tables, description, }: {
|
||||
commandName: string;
|
||||
headline?: string;
|
||||
usage?: string;
|
||||
tables?: Record<string, [command: string, help: string][]>;
|
||||
description?: string;
|
||||
}): void;
|
||||
Loading…
Add table
Add a link
Reference in a new issue