Skip to content

Commit

Permalink
Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Sytten committed May 25, 2020
1 parent f5ced3f commit 9f890ac
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
import { ConstructorOptions } from "logdna"
import { ConstructorOptions } from "logdna";
import Transport from "winston-transport";

declare class LogDNATransport extends Transport {
constructor(options: LogDNATransport.TransportOptions);
}

declare namespace LogDNATransport {
interface TransportOptions extends Transport.TransportStreamOptions, ConstructorOptions {
interface TransportOptions
extends Transport.TransportStreamOptions,
ConstructorOptions {
/** The LogDNA API key. */
key: string;
/** The name of this transport. */
name?: string;
}
}

export = LogDNATransport;
export = LogDNATransport;

0 comments on commit 9f890ac

Please sign in to comment.