This commit is contained in:
DjDeveloperr 2021-04-08 14:51:26 +05:30
parent 08f2f653f9
commit bd530ecb15
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,8 @@ export type MethodFunction = (
body?: unknown,
maxRetries?: number,
bucket?: string | null,
rawResponse?: boolean
rawResponse?: boolean,
options?: RequestOptions
) => Promise<any>
export interface APIMap extends MethodFunction {