funhi-chart 1.0.9 → 1.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dts/components/FunhiChartIsolated.d.ts +13 -0
- package/dist/dts/index.d.ts +0 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface ChartProps {
|
|
3
|
+
mint: string;
|
|
4
|
+
ticker?: string;
|
|
5
|
+
tokenName?: string;
|
|
6
|
+
socket?: any;
|
|
7
|
+
isConnected?: boolean;
|
|
8
|
+
currentMarketCap?: number;
|
|
9
|
+
analyticsConnected?: boolean;
|
|
10
|
+
analyticsLoading?: boolean;
|
|
11
|
+
}
|
|
12
|
+
declare const FunhiChartIsolated: React.FC<ChartProps>;
|
|
13
|
+
export default FunhiChartIsolated;
|
package/dist/dts/index.d.ts
CHANGED
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
* @packageDocumentation
|
|
8
8
|
*/
|
|
9
9
|
export { default as FunhiChart } from './components/FunhiChart';
|
|
10
|
-
export { default as ProfessionalTradingChartRedux } from './components/FunhiChart';
|
|
11
10
|
export type { ChartProps } from './components/FunhiChart';
|
|
12
11
|
export { useSocket } from './hooks/useSocket';
|
|
13
12
|
export { useOptimizedTokenAnalytics } from './hooks/useOptimizedTokenAnalytics';
|
package/dist/index.d.ts
CHANGED
|
@@ -291,5 +291,5 @@ declare const API_CONFIG: {
|
|
|
291
291
|
readonly RETRY_DELAY: 1000;
|
|
292
292
|
};
|
|
293
293
|
|
|
294
|
-
export { API_CONFIG, FunhiChart,
|
|
294
|
+
export { API_CONFIG, FunhiChart, candleAggregation, candleStorageService, useOptimizedTokenAnalytics, useSocket };
|
|
295
295
|
export type { CandleData$1 as CandleData, ChartProps, GetCandlesRequest, SaveCandleRequest, SaveCandlesRequest, TimeFrame };
|