import { INetworkService } from "../interfaces/INetworkService" export class GASNetworkService implements INetworkService { fetch(url: string, params: GoogleAppsScript.URL_Fetch.URLFetchRequestOptions): GoogleAppsScript.URL_Fetch.HTTPResponse { return UrlFetchApp.fetch(url, params) } fetchAll(requests: (string | GoogleAppsScript.URL_Fetch.URLFetchRequest)[]): GoogleAppsScript.URL_Fetch.HTTPResponse[] { return UrlFetchApp.fetchAll(requests); } }