mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-20 16:14:57 +08:00
12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
import loggly = require("loggly");
|
|
|
|
var options: loggly.LogglyOptions = {
|
|
token: "YOUR_TOKEN",
|
|
subdomain: "YOUR_DOMAIN",
|
|
tags: ["NodeJS"],
|
|
json: true
|
|
};
|
|
|
|
var client: loggly.Loggly = loggly.createClient(options)
|
|
client.log('hello world');
|