@itznotabug/routex
Version:
A client side redirection plugin for Vitepress.
10 lines (9 loc) • 321 B
TypeScript
/**
* Handles logging with consistent formatting for the redirects plugin
*/
export declare class Logger {
private static readonly PREFIX;
static log(message: string, spaced?: boolean): void;
static warn(message: string, spaced?: boolean): void;
static error(message: string, spaced?: boolean): void;
}