From e9696401d4e27290e317825984ded0bb62ffc9b0 Mon Sep 17 00:00:00 2001 From: heycalmdown Date: Tue, 15 Nov 2016 13:32:57 +0900 Subject: [PATCH] Fix indent --- winston/index.d.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/winston/index.d.ts b/winston/index.d.ts index 54d5a0e713..6460caeecc 100644 --- a/winston/index.d.ts +++ b/winston/index.d.ts @@ -405,8 +405,8 @@ declare namespace winston { host?: string; port?: number; auth?: { - username: string; - password: string; + username: string; + password: string; }; path?: string; } @@ -426,8 +426,8 @@ declare namespace winston { filename?: string; dirname?: string; options?: { - flags?: string; - highWaterMark?: number; + flags?: string; + highWaterMark?: number; }; stream?: NodeJS.WritableStream; } @@ -444,8 +444,8 @@ declare namespace winston { filename?: string; dirname?: string; options?: { - flags?: string; - highWaterMark?: number; + flags?: string; + highWaterMark?: number; }; stream?: NodeJS.WritableStream; } @@ -460,9 +460,9 @@ declare namespace winston { export interface WebhookTransportOptions extends GenericTransportOptions, GenericNetworkTransportOptions { method?: string; ssl?: { - key?: any; - cert?: any; - ca: any; + key?: any; + cert?: any; + ca: any; }; }