mirror of https://github.com/actions/setup-go.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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 };
|