@thermopylae/core.cookie-session
Version:
Cookie user session for HTTP interface.
12 lines (11 loc) • 331 B
TypeScript
import type { WinstonLogger } from '@thermopylae/core.logger';
/**
* @private
*/
declare let logger: WinstonLogger;
/**
* Init internal logger used by the library. <br/>
* This method should be called once, at the application start, before using library.
*/
declare function initLogger(): void;
export { logger, initLogger };