@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
10 lines (9 loc) • 342 B
TypeScript
import { Logger } from './logger';
export declare class HTTPErrorLogger {
private logger;
constructor(logger: Logger);
write(message: string): void;
getWriteFunction(): (message: string) => void;
createWritableStream(): NodeJS.WritableStream;
}
export declare function NewHTTPErrorLogger(logger: Logger): HTTPErrorLogger;