mirror of
https://github.com/SikongJueluo/cc-utils.git
synced 2025-11-29 12:57:50 +08:00
21 lines
541 B
TypeScript
21 lines
541 B
TypeScript
/**
|
|
* Main entry point for the ccStructLog library.
|
|
*
|
|
* This module provides convenient factory functions and pre-configured
|
|
* logger instances for common use cases. It exports all the core components
|
|
* while providing easy-to-use defaults for typical logging scenarios.
|
|
*/
|
|
|
|
// Re-export all core types and classes
|
|
export * from "./types";
|
|
export * from "./Logger";
|
|
|
|
// Re-export all processors
|
|
export * from "./processors";
|
|
|
|
// Re-export all renderers
|
|
export * from "./renderers";
|
|
|
|
// Re-export all streams
|
|
export * from "./streams";
|