-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
41 lines (35 loc) · 877 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/// <reference types="node" />
import stream = require('stream');
export = BunyanSyslogUnixdgram;
declare class BunyanSyslogUnixdgram extends stream.Writable {
constructor(options?: BunyanSyslogUnixdgram.Options);
}
declare namespace BunyanSyslogUnixdgram {
export const facility: {
auth: number;
authpriv: number;
cron: number;
daemon: number;
ftp: number;
kern: number;
local0: number;
local1: number;
local2: number;
local3: number;
local4: number;
local5: number;
local6: number;
local7: number;
lpr: number;
mail: number;
news: number;
syslog: number;
user: number;
uucp: number;
};
export interface Options {
facility?: number,
name?: string,
path?: string
}
}