UNPKG

web-collect-events-narayana

Version:

An sdk for collecting events from web pages

11 lines (10 loc) 249 B
function postData(url: string, data: object): Promise<Response> { return fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(data), }); } export { postData };