1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-10 05:40:06 +00:00

chore: added jsdoc header

This commit is contained in:
2021-09-03 14:54:35 +05:00
parent 146b0715bf
commit 5ee57f3d07
3 changed files with 23 additions and 0 deletions

View File

@@ -51,6 +51,12 @@ export class SASViyaApiClient {
)
private folderMap = new Map<string, Job[]>()
/**
* A helper method used to call appendRequest method of RequestClient
* @param response - response from sasjs request
* @param program - name of program
* @param debug - a boolean that indicates whether debug was enabled or not
*/
public appendRequest(response: any, program: string, debug: boolean) {
this.requestClient!.appendRequest(response, program, debug)
}