astro-ghostcms/.pnpm-store/v3/files/34/51f4c12be828f5c6084da3d7acc...

14 lines
636 B
Plaintext

import { LogMessage, LogStyle, LogTableInput } from './interfaces';
/**works in node and the browser.*/
export declare function Log(...messages: (string | LogMessage)[]): void;
export interface LogTableOptions {
padding?: number;
spacing?: number;
}
/**node only*/
export declare function LogTable(table: LogTableInput, options?: LogTableOptions): void;
/**works in the browser and node. */
export declare function LogS(styles: LogStyle[], ...messages: string[]): void;
/**Log a single message with an optional style, works in the browser and node. */
export declare function LogSingle(message: string, style?: LogStyle): void;