feat: added nyc for test coverage reporting. fix: add jsdoc comments

This commit is contained in:
StevanFreeborn
2023-01-26 13:58:25 -06:00
parent b36d9445bd
commit 8b6e5ccefc
10 changed files with 2993 additions and 27 deletions
+15 -1
View File
@@ -1,5 +1,19 @@
/**
* @class App - Model for the App object
*/
class App {
/**
* @property {string} href - The URL to the app
*/
href: string;
/**
* @property {number} id - The id of the app
*/
id: number;
/**
* @property {string} name - The name of the app
*/
name: string;
}
}