@exchanges/binance
Version:
Exchange provider for Binance API
13 lines (12 loc) • 552 B
TypeScript
import { BinanceClient } from '../../../clients';
export interface CompositeIndexSymbolInformationResponse {
symbol: string;
time: Date;
baseAssetList: {
baseAsset: string;
weightInQuantity: number;
weightInPercentage: number;
}[];
}
export declare function compositeIndexSymbolInformation(client: BinanceClient): Promise<CompositeIndexSymbolInformationResponse[]>;
export declare function compositeIndexSymbolInformation(client: BinanceClient, symbol: string): Promise<CompositeIndexSymbolInformationResponse>;