Files
NativeScript/apps/automated/src/http/http-string-worker.ts
2021-02-05 23:02:44 +01:00

13 lines
194 B
TypeScript

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