UNPKG

@jamesgopsill/repetier-server-client

Version:
13 lines (12 loc) 296 B
export async function info() { const url = `${this.httpUrl}/printer/info`; const config = { method: "GET", }; const request = new Request(url, config); const r = (await fetch(request)); r.data = null; if (r.ok) r.data = await r.json(); return r; }