Run prettier on abbrev - #no-publishing-comment (#39013)

This commit is contained in:
Orta 2019-10-09 09:54:02 -07:00 committed by GitHub
parent 485d5a96db
commit 14469cd04e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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<T> {
abbrev(): {[abbreviation: string]: string};
abbrev(): { [abbreviation: string]: string };
}
interface ReadonlyArray<T> {
abbrev(): {[abbreviation: string]: string};
abbrev(): { [abbreviation: string]: string };
}
interface Object {
abbrev(): {[abbreviation: string]: string};
abbrev(): { [abbreviation: string]: string };
}
}