ksmf
Version:
Modular Microframework for create minimalistic CLI/Web application or REST API
36 lines (35 loc) • 805 B
TypeScript
export = LoggerWrapper;
/**
* @author Antonio Membrides Espinosa
* @email tonykssa@gmail.com
* @date 22/04/2023
* @copyright Copyright (c) 2020-2030
* @license GPL
* @version 1.0
**/
declare class LoggerWrapper {
/**
* @type {Object|null}
*/
helper: any | null;
/**
* @type {Object|null}
*/
manager: any | null;
/**
* @type {Console|null}
*/
logger: Console | null;
/**
* @description Set options on Initialize Configuration Event
* @param {Object} cfg
* @param {Object} app
*/
onInitConfig(cfg: any, app: any): Promise<void>;
app: any;
/**
* @description Set options on Initialize App Event
* @param {Object} server
*/
onInitApp(server: any): Promise<void>;
}