Skip to content

Commit fd8ebef

Browse files
committed
fix: update jsdoc
Signed-off-by: Ruben Romero Montes <[email protected]>
1 parent a580bc4 commit fd8ebef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/analysis.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function addProxyAgent(options, opts) {
3535
* @param {string} url - the backend url to send the request to
3636
* @param {boolean} [html=false] - true will return 'text/html', false will return 'application/json'
3737
* @param {{}} [opts={}] - optional various options to pass along the application
38-
* @returns {Promise<string|import('AnalysisReport').AnalysisReport>}
38+
* @returns {Promise<string|import('@trustification/exhort-api-spec/model/v4/AnalysisReport').AnalysisReport>}
3939
*/
4040
async function requestStack(provider, manifest, url, html = false, opts = {}) {
4141
opts["source-manifest"] = Buffer.from(fs.readFileSync(manifest).toString()).toString('base64')
@@ -93,7 +93,7 @@ async function requestStack(provider, manifest, url, html = false, opts = {}) {
9393
* @param {string} manifest - path for the manifest
9494
* @param {string} url - the backend url to send the request to
9595
* @param {{}} [opts={}] - optional various options to pass along the application
96-
* @returns {Promise<import('AnalysisReport').AnalysisReport>}
96+
* @returns {Promise<import('@trustification/exhort-api-spec/model/v4/AnalysisReport').AnalysisReport>}
9797
*/
9898
async function requestComponent(provider, manifest, url, opts = {}) {
9999
opts["source-manifest"] = Buffer.from(fs.readFileSync(manifest).toString()).toString('base64')

0 commit comments

Comments
 (0)