- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
17 lines
442 B
TypeScript
17 lines
442 B
TypeScript
declare enum LogContexts {
|
|
application = "application",
|
|
hostname = "hostname",
|
|
logLevel = "logLevel",
|
|
namespace = "namespace",
|
|
package = "package"
|
|
}
|
|
interface LogContext {
|
|
[key: string]: any;
|
|
[LogContexts.application]?: string;
|
|
[LogContexts.hostname]?: string;
|
|
[LogContexts.logLevel]?: number;
|
|
[LogContexts.namespace]?: string;
|
|
[LogContexts.package]?: string;
|
|
}
|
|
export { LogContext, LogContexts };
|