feat: begin working on implementing record methods

This commit is contained in:
StevanFreeborn
2023-02-09 22:21:20 -06:00
parent 3b3e210920
commit fde8b50717
30 changed files with 629 additions and 286 deletions
+3 -3
View File
@@ -5,17 +5,17 @@ export class App {
/**
* @property {string} href - The URL to the app
*/
href: string;
public href: string;
/**
* @property {number} id - The id of the app
*/
id: number;
public id: number;
/**
* @property {string} name - The name of the app
*/
name: string;
public name: string;
/**
* @constructor - Creates a new instance of the App class.