feat: implement getAppsByIds method

This commit is contained in:
StevanFreeborn
2023-02-02 20:24:20 -06:00
parent d00683ea3c
commit a38a6240bd
10 changed files with 334 additions and 23 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ export class CollectionResponse<T> {
/**
* @property {T} items - The items in the collection.
*/
public items: T;
public items: T[];
/**
* @constructor - Creates a new instance of the CollectionResponse class.
@@ -18,7 +18,7 @@ export class CollectionResponse<T> {
* @param {T} items - The items in the collection.
* @returns {CollectionResponse<T>} - A new instance of the CollectionResponse.
*/
constructor(count: number, items: T) {
constructor(count: number, items: T[]) {
this.count = count;
this.items = items;
}