Added TypeDoc/comments

This commit is contained in:
Giuseppe Digilio
2019-02-07 18:17:04 +01:00
parent f267308a09
commit f6a88d846f
27 changed files with 306 additions and 24 deletions

View File

@@ -1,4 +1,7 @@
/**
* Class representing a query parameter (query?fieldName=fieldValue) used in FindAllOptions object
*/
export class SearchParam {
constructor(public fieldName: string, public fieldValue: any) {