UNPKG

hrc-debug

Version:

print debug info at server from client

12 lines (10 loc) 277 B
import { LogQueueItem, AppearData } from "../interface.common"; export const appear = (data: AppearData, server: string) => { return fetch(server, { method: 'POST', body: JSON.stringify(data), headers: { 'Content-Type': 'application/json', }, }); };