This commit is contained in:
2026-04-07 14:50:23 +09:00
commit b4e485502b
4778 changed files with 2017091 additions and 0 deletions

8
safekiso-server/node_modules/snyk/dist/cli/ipc.d.ts generated vendored Normal file
View File

@@ -0,0 +1,8 @@
/**
* Sends the specified error back at the Golang CLI, by writting it to the temporary error file. Errors that are not
* inlcuded in the Error Catalog will be wraped in a generic model.
* @param err {Error} The error to be sent to the Golang CLI
* @param isJson {boolean} If the prameter is set, the meta field "supressJsonOutput" will also be set, supressing the Golang CLI from displaying this error.
* @returns {Promise<boolean>} The result of the operation as a boolean value
*/
export declare function sendError(err: Error, isJson: boolean): boolean;