feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
import Log from './Log';
import { Level } from './types';
/**
* LogOutputs class - logging level for each output channel
* @class LogOutputs
* @param {Log} [_log] The log on which this is the outputs property
* @param {string} [_namespace?] Defaults to the log's namespace, but overridable
*/
declare class LogOutputs {
private _log;
constructor(_log: Log);
/**
* Set the logging level for all output channels at once
* @name LogOutputs#all
* @type {Level}
*/
all: Level | keyof typeof Level;
/**
* The logging level for the console output channel
* @name LogOutputs#console
* @type {Level}
*/
console: Level | keyof typeof Level;
/**
* The logging level for the file output channel
* @name LogOutputs#file
* @type {Level}
*/
file: Level | keyof typeof Level;
/**
* The logging level for the Pegasus output channel
* @name LogOutputs#pegasus
* @type {Level}
*/
pegasus: Level | keyof typeof Level;
/**
* The logging level for the syslog output channel
* @name LogOutputs#syslog
* @type {Level}
*/
syslog: Level | keyof typeof Level;
}
export default LogOutputs;