mirror of
https://github.com/actions/setup-python.git
synced 2025-06-15 16:57:12 +02:00
Initial pass
This commit is contained in:
16
node_modules/bs-logger/dist/logger/context.d.ts
generated
vendored
Normal file
16
node_modules/bs-logger/dist/logger/context.d.ts
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
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 };
|
Reference in New Issue
Block a user