Files
NativeScript/tests/app/http/http-string-worker.ts
2019-03-21 11:29:05 +02:00

10 lines
196 B
TypeScript

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