declare enum Severity { Ignore = "Ignore", Info = "Info", Warning = "Warning", Error = "Error" } declare namespace Severity { /** * Parses 'error', 'warning', 'warn', 'info' in call casings * and falls back to ignore. */ function fromValue(value: string): Severity; } export { Severity };