vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
10 lines (9 loc) • 554 B
TypeScript
export { logWithViteTag };
export { logWithVikeTag };
export { logDirectly };
export { applyViteSourceMapToStackTrace };
import type { LogCategory, LogType } from '../loggerNotProd.js';
declare function logWithVikeTag(msg: string, logType: LogType, category: LogCategory | null, showVikeVersion?: boolean): void;
declare function logWithViteTag(msg: string, logType: LogType, category: LogCategory | null): void;
declare function logDirectly(thing: unknown, logType: LogType): void;
declare function applyViteSourceMapToStackTrace(thing: unknown): void;