UNPKG

@ln-markets/sdk

Version:
10 lines (7 loc) 201 B
import type { KyInstance } from 'ky' type Ping = () => Promise<string> export const createPing = (instance: KyInstance): Ping => { return async () => { return instance.get('ping').text() } }