1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-12-22 22:13:20 +02:00

docs: update parameter type in mssqlQuery function documentation

This commit is contained in:
Antonino Natale 2024-12-11 00:12:02 +01:00
parent dc931124f1
commit b398ba7497

View File

@ -349,7 +349,7 @@ exports.mssqlQuery = async function (connectionString, handleEmptyResult, query)
/** /**
* Run a query on Postgres * Run a query on Postgres
* @param {string} connectionString The database connection string * @param {string} connectionString The database connection string
* @param {string} handleEmptyResult Should empty results be handled as an error * @param {boolean} handleEmptyResult Should empty results be handled as an error
* @param {string} query The query to validate the database with * @param {string} query The query to validate the database with
* @returns {Promise<(string[] | object[] | object)>} Response from * @returns {Promise<(string[] | object[] | object)>} Response from
* server * server