V3
This commit is contained in:
22
src/index.ts
22
src/index.ts
@ -1,27 +1,21 @@
|
||||
import { LoggingBase } from "./base.js";
|
||||
import { Logging as LoggingClass } from "./base.js";
|
||||
export { Logging } from "./base.js";
|
||||
export { ConsoleAdapter } from "./consolewriter.js";
|
||||
export {
|
||||
LoggingBase,
|
||||
LoggingBaseOptions,
|
||||
removeColors,
|
||||
withColor,
|
||||
} from "./base.js";
|
||||
export { ILoggingOptions, INativeFunctions } from "./base.js";
|
||||
|
||||
export {
|
||||
Adapter,
|
||||
LoggingTypes,
|
||||
Message,
|
||||
FormatConfig,
|
||||
FormattedLine,
|
||||
DefaultFormatConfig as DefaultColorMap,
|
||||
FormattedText,
|
||||
Colors,
|
||||
IColors as Colors,
|
||||
Format,
|
||||
FormatTypes,
|
||||
TerminalFormats,
|
||||
Formatted,
|
||||
IFormatted,
|
||||
} from "./types.js";
|
||||
|
||||
export { ObservableInterface } from "@hibas123/utils";
|
||||
const Logging = new LoggingClass();
|
||||
|
||||
export let Logging: LoggingBase = undefined;
|
||||
Logging = new LoggingBase();
|
||||
export default Logging;
|
||||
|
Reference in New Issue
Block a user