feat(types): add TypeScript definitions for TradingView and Datafeeds

This commit is contained in:
2025-12-29 23:09:52 +07:00
parent ae0e73a4e8
commit 0741b7b507
8 changed files with 32109 additions and 2 deletions

29674
types/charting_library.d.ts vendored Normal file

File diff suppressed because it is too large Load Diff

1143
types/datafeed-api.d.ts vendored Normal file

File diff suppressed because it is too large Load Diff

1222
types/datafeeds.d.ts vendored Normal file

File diff suppressed because it is too large Load Diff

10
types/tradingview.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
/// <reference types="./charting_library" />
/// <reference types="./datafeed-api" />
/// <reference types="./datafeeds" />
declare global {
const TradingView: typeof import("./charting_library");
const Datafeeds: typeof import("./datafeeds");
}
export {};