From 14469cd04e2d200f3e84358d92ec449afcbbb68d Mon Sep 17 00:00:00 2001 From: Orta Date: Wed, 9 Oct 2019 09:54:02 -0700 Subject: [PATCH] Run prettier on abbrev - #no-publishing-comment (#39013) --- types/abbrev/index.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/types/abbrev/index.d.ts b/types/abbrev/index.d.ts index 0d55334d3f..09cfbea8b1 100644 --- a/types/abbrev/index.d.ts +++ b/types/abbrev/index.d.ts @@ -5,8 +5,8 @@ export = abbrev; -declare function abbrev(words: string[]): {[abbreviation: string]: string}; -declare function abbrev(...words: string[]): {[abbreviation: string]: string}; +declare function abbrev(words: string[]): { [abbreviation: string]: string }; +declare function abbrev(...words: string[]): { [abbreviation: string]: string }; declare namespace abbrev { function monkeyPatch(): void; @@ -14,14 +14,14 @@ declare namespace abbrev { declare global { interface Array { - abbrev(): {[abbreviation: string]: string}; + abbrev(): { [abbreviation: string]: string }; } interface ReadonlyArray { - abbrev(): {[abbreviation: string]: string}; + abbrev(): { [abbreviation: string]: string }; } interface Object { - abbrev(): {[abbreviation: string]: string}; + abbrev(): { [abbreviation: string]: string }; } }