Avoid double export

This commit is contained in:
Edwin Veldhuizen 2023-02-22 16:38:49 +01:00 committed by GitHub
parent e552028995
commit 4f00cd387c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
export export const sendRequest = <T>(
export const sendRequest = <T>(
config: OpenAPIConfig,
options: ApiRequestOptions,
http: HttpClient,

View File

@ -1,4 +1,4 @@
export export const sendRequest = async <T>(
export const sendRequest = async <T>(
config: OpenAPIConfig,
options: ApiRequestOptions,
url: string,

View File

@ -1,4 +1,4 @@
export export const sendRequest = async (
export const sendRequest = async (
config: OpenAPIConfig,
options: ApiRequestOptions,
url: string,