@types/mathieuc__tradingview 3.5.0 → 3.5.1
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.
mathieuc__tradingview/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for @mathieuc/tradingview (https://github
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mathieuc__tradingview.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Sun, 15 Feb 2026 06:14:17 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
mathieuc__tradingview/index.d.ts
CHANGED
|
@@ -688,12 +688,35 @@ export class QuoteMarket {
|
|
|
688
688
|
*/
|
|
689
689
|
constructor(symbol: MarketSymbol);
|
|
690
690
|
|
|
691
|
+
/**
|
|
692
|
+
* When quote market is loaded
|
|
693
|
+
* @param callback Callback
|
|
694
|
+
*/
|
|
695
|
+
onLoaded(callback: () => void): void;
|
|
696
|
+
|
|
691
697
|
/**
|
|
692
698
|
* Subscribe to market data
|
|
693
699
|
* @param callback Data callback
|
|
694
700
|
*/
|
|
695
701
|
onData(callback: (data: any) => void): void;
|
|
696
702
|
|
|
703
|
+
/**
|
|
704
|
+
* When quote event happens
|
|
705
|
+
* @param callback Callback
|
|
706
|
+
*/
|
|
707
|
+
onEvent(callback: (...data: any[]) => void): void;
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* When quote error happens
|
|
711
|
+
* @param callback Callback
|
|
712
|
+
*/
|
|
713
|
+
onError(callback: (...data: any[]) => void): void;
|
|
714
|
+
|
|
715
|
+
/**
|
|
716
|
+
* Close this listener
|
|
717
|
+
*/
|
|
718
|
+
close(): void;
|
|
719
|
+
|
|
697
720
|
/**
|
|
698
721
|
* Unsubscribe from market data
|
|
699
722
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/mathieuc__tradingview",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "TypeScript definitions for @mathieuc/tradingview",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mathieuc__tradingview",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,6 +21,6 @@
|
|
|
21
21
|
"scripts": {},
|
|
22
22
|
"dependencies": {},
|
|
23
23
|
"peerDependencies": {},
|
|
24
|
-
"typesPublisherContentHash": "
|
|
25
|
-
"typeScriptVersion": "5.
|
|
24
|
+
"typesPublisherContentHash": "95adec2725c663732e8f91130b0039041a792dfbc109c5d34c9ab8122655330c",
|
|
25
|
+
"typeScriptVersion": "5.2"
|
|
26
26
|
}
|