Release v25.001 (from 8d229e9c)

Fixes tradingview/charting_library#7581
This commit is contained in:
jenkins
2023-06-26 14:45:17 +00:00
parent 1c9c85353a
commit 0ae09d18be
229 changed files with 2493 additions and 1851 deletions

View File

@@ -0,0 +1,7 @@
import { RequestParams, UdfErrorResponse, UdfResponse } from './helpers';
export interface IRequester {
sendRequest<T extends UdfResponse>(datafeedUrl: string, urlPath: string, params?: RequestParams): Promise<T | UdfErrorResponse>;
sendRequest<T>(datafeedUrl: string, urlPath: string, params?: RequestParams): Promise<T>;
sendRequest<T>(datafeedUrl: string, urlPath: string, params?: RequestParams): Promise<T>;
}