Files
NativeScript/tests/app/http/http-string-worker.ts
2020-01-17 15:12:28 +02:00

10 lines
198 B
TypeScript

import * as http from "@nativescript/core/http";
declare var postMessage: any;
http.getString("https://httpbin.org/get").then(function (r) {
postMessage(r);
}, function (e) {
throw e;
});