pondjs
Version:
A timeseries library build on top of immutable.js
17 lines (16 loc) • 442 B
TypeScript
declare enum LogContexts {
application = "application",
hostname = "hostname",
logLevel = "logLevel",
namespace = "namespace",
package = "package"
}
interface LogContext {
[]: any;
[]?: string;
[]?: string;
[]?: number;
[]?: string;
[]?: string;
}
export { LogContext, LogContexts };