Got rid of the last brace-typed and hyphen-less params etc

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-01-09 15:56:07 +01:00
parent c8ff2df05a
commit 5333451def
72 changed files with 247 additions and 423 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ export type FossaApi = {
/**
* Get the finding summary for a list of projects
*
* @param projectTitles a list of project titles in FOSSA
* @param projectTitles - a list of project titles in FOSSA
*/
getFindingSummaries(
projectTitles: Array<string>,
@@ -41,7 +41,7 @@ export type FossaApi = {
/**
* Get the finding summary of a single project.
*
* @param projectTitle the project title in FOSSA
* @param projectTitle - the project title in FOSSA
*/
getFindingSummary(projectTitle: string): Promise<FindingSummary | undefined>;
};