diff --git a/scripts/authors.ts b/scripts/authors.ts index 283567aacff..0bcfc425790 100644 --- a/scripts/authors.ts +++ b/scripts/authors.ts @@ -6,16 +6,16 @@ interface Author { displayNames: string[]; preferredName?: string; emails: string[]; -}; +} interface AuthorMap { [s: string]: Author -}; +} interface Command { (...arg: string[]): void; description?: string; -}; +} const mailMapPath = path.resolve(__dirname, "../.mailmap"); const authorsPath = path.resolve(__dirname, "../AUTHORS.md");