mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Run prettier on abbrev - #no-publishing-comment (#39013)
This commit is contained in:
parent
485d5a96db
commit
14469cd04e
10
types/abbrev/index.d.ts
vendored
10
types/abbrev/index.d.ts
vendored
@ -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 };
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user