@coinset/bitflyer
Version:
Bitflyer API client for Node.js
7 lines • 494 B
TypeScript
import type { StrictExtract } from '../../utils/types';
import type { All_Pairs, BTC, JPY } from 'cryptocurrency-types';
declare type BitflyerSpotPair = StrictExtract<All_Pairs, 'BTC_JPY' | 'XRP_JPY' | 'ETH_JPY' | 'XLM_JPY' | 'MONA_JPY' | 'ETH_BTC' | 'BCH_BTC'>;
declare type BitflyerFXPair = `FX_${BTC}_${JPY}`;
declare type BitflyerPair = BitflyerSpotPair | BitflyerFXPair | (string & {});
export type { BitflyerPair, BitflyerFXPair, BitflyerSpotPair };
//# sourceMappingURL=currency.d.ts.map