Files
ares/public/assets/sweetalert2/src/staticMethods/fire.js
Beyhan Oğur 4d92991817 first commit
2026-04-26 21:30:42 +03:00

11 lines
239 B
JavaScript

/**
* Main method to create a new SweetAlert2 popup
*
* @this {new (...args: any[]) => any}
* @param {...SweetAlertOptions} args
* @returns {Promise<SweetAlertResult>}
*/
export function fire(...args) {
return new this(...args)
}