UNPKG

@bigmi/core

Version:

TypeScript library for Bitcoin apps.

9 lines (8 loc) 212 B
export const createMockResponse = <T>(data: T): Response => ({ ok: true, json: () => Promise.resolve(data), headers: new Headers({ 'Content-type': 'application/json', }), }) as Response