chore: updating deps

This commit is contained in:
Joel Male
2024-03-28 12:25:32 +10:00
parent 0de33a6f62
commit c54aaa0ec6
779 changed files with 586281 additions and 1021521 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
import fetch from 'node-fetch';
var https = require('https')
import fetch from 'node-fetch'
import https = require('https')
class Http {
make(
@@ -8,7 +8,7 @@ class Http {
headers: string | null = null,
ignoreCertificate: boolean | null = false
): Promise<any> {
return new Promise((resolve, reject) => {
return new Promise(resolve => {
fetch(
url,
this.getOptions('post', headers, body, ignoreCertificate)