Changed Array<T> to type[]

Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com>
pull/1499/head
Matthew Nickson 2 years ago
parent 9996ba1636
commit 09e61d9d63
No known key found for this signature in database
GPG Key ID: BF229DCFD4748E05

@ -27,7 +27,7 @@ class Group extends BeanModel {
/**
* Get all monitors
* @returns {Array<Bean>}
* @returns {Bean[]}
*/
async getMonitorList() {
return R.convertToBeans("monitor", await R.getAll(`

@ -840,7 +840,7 @@ class Monitor extends BeanModel {
* than target days
* @param {number} daysRemaining Number of days remaining on certifcate
* @param {number} targetDays Number of days to alert after
* @param {Array<LooseObject<any>>} notificationList List of notification providers
* @param {LooseObject<any>[]} notificationList List of notification providers
* @returns {Promise<void>}
*/
async sendCertNotificationByTargetDays(daysRemaining, targetDays, notificationList) {

@ -39,7 +39,7 @@ class StatusPage extends BeanModel {
/**
* Update list of domain names
* @param {Array<string>} domainNameList
* @param {string[]} domainNameList
* @returns {Promise<void>}
*/
async updateDomainNameList(domainNameList) {
@ -83,7 +83,7 @@ class StatusPage extends BeanModel {
/**
* Get list of domain names
* @returns {Array<Object>}
* @returns {Object[]}
*/
getDomainNameList() {
let domainList = [];

@ -1475,7 +1475,7 @@ try {
/**
* Update notifications for a given monitor
* @param {number} monitorID ID of monitor to update
* @param {Array<number>} notificationIDList List of new notification
* @param {number[]} notificationIDList List of new notification
* providers to add
* @returns {Promise<void>}
*/

@ -387,7 +387,7 @@ exports.checkCertificate = function (res) {
/**
* Check if the provided status code is within the accepted ranges
* @param {string} status The status code to check
* @param {Array<string>} acceptedCodes An array of accepted status codes
* @param {string[]} acceptedCodes An array of accepted status codes
* @returns {boolean} True if status code within range, false otherwise
* @throws {Error} Will throw an error if the provided status code is not a valid range string or code string
*/

Loading…
Cancel
Save