@coko/server
Version:
Reusable server for use by Coko's projects
22 lines • 749 B
TypeScript
import chalk from 'chalk';
type NewLineOptions = {
newLineBefore?: boolean;
newLineAfter?: boolean;
};
declare class InternalLogger {
primary: chalk.Chalk;
builder(str: string, options?: NewLineOptions): void;
error(str: string): void;
init(str: string, options?: NewLineOptions): void;
nodemon(str: string, options?: NewLineOptions): void;
point(str: string, indent?: number): void;
report(header: string, str: string): void;
section(str: string): void;
success(str: string, indent?: number): void;
wait(str: string): void;
warn(str: string): void;
work(str: string): void;
}
declare const internalLogger: InternalLogger;
export default internalLogger;
//# sourceMappingURL=internals.d.ts.map