renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
13 lines (12 loc) • 503 B
TypeScript
import { Stream } from 'node:stream';
import type { BunyanRecord } from './types';
export declare function indent(str: string, leading?: boolean): string;
export declare function getMeta(rec: BunyanRecord): string;
export declare function getDetails(rec: BunyanRecord): string;
export declare function formatRecord(rec: BunyanRecord): string;
export declare class RenovateStream extends Stream {
readable: boolean;
writable: boolean;
constructor();
write(data: BunyanRecord): boolean;
}