@strong-roots-capital/bybit-api
Version:
TypeScript API for Bybit cryptocurrency exchange
20 lines • 976 B
TypeScript
import * as t from 'io-ts';
export declare const BybitSubscriptionRequest: t.Type<{
channel: "klineV2";
interval: {
quantifier: number & t.Brand<t.IntBrand> & (1 | 60);
unit: "minute";
} | {
quantifier: t.Brand<t.IntBrand> & 1;
unit: "hour";
} | {
quantifier: t.Brand<t.IntBrand> & 1;
unit: "day";
} | {
quantifier: t.Brand<t.IntBrand> & 1;
unit: "week";
};
symbol: "BTCUSD" | "ETHUSD" | "EOSUSD" | "XRPUSD" | "BTCUSDT" | "ETHUSDT" | "AXSUSDT" | "XRPUSDT" | "DOGEUSDT" | "EOSUSDT" | "THETAUSDT" | "TRXUSDT" | "COMPUSDT" | "XLMUSDT" | "ADAUSDT" | "DOTUSDT" | "BNBUSDT" | "LTCUSDT" | "ETCUSDT" | "MATICUSDT" | "LINKUSDT" | "AAVEUSDT" | "BCHUSDT" | "SOLUSDT" | "UNIUSDT" | "FILUSDT" | "SUSHIUSDT" | "XTZUSDT" | "XEMUSDT";
}, string, unknown>;
export declare type BybitSubscriptionRequest = t.TypeOf<typeof BybitSubscriptionRequest>;
//# sourceMappingURL=BybitSubscriptionRequest.d.ts.map