Upload files.

This commit is contained in:
0xcathiefish
2026-02-12 08:11:37 +00:00
parent 47fa783913
commit b33ef907d4
2029 changed files with 53320 additions and 0 deletions
+7
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>;
}