11 lines
263 B
TypeScript
11 lines
263 B
TypeScript
/// <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 {};
|