UNPKG

syslog-client-ts

Version:

Modern typescript implementation of Syslog Client

10 lines (9 loc) 248 B
import { FacilityType } from './facility.js'; import { SeverityType } from './severity.js'; export interface IIdentity { facility: FacilityType; severity: SeverityType; appName?: string; syslogHostname?: string; pid?: number; }