@coinset/bitflyer
Version:
Bitflyer API client for Node.js
13 lines • 468 B
TypeScript
import type { BitflyerPair } from '../../shared/types/currency';
import type { PublicAPI } from '../../shared/types/fetch';
import type { State } from '../../shared/types';
declare type HealthOptions = {
productCode: BitflyerPair;
};
declare type HealthResponse = {
status: State;
};
declare const fetchHealth: PublicAPI<HealthOptions, HealthResponse>;
export { fetchHealth };
export type { HealthOptions, HealthResponse };
//# sourceMappingURL=health.d.ts.map