import { CollectionInterface } from './interfaces/Collection'; import Account from './interfaces/Account'; /** * * @param endpoint exemple : "getMyAddress" "addTokenAddress" * @param method exemple : "POST" "GET" "PUT" * @param body exemple : JSON.stringify({myAddress:this.getMySignedAddress()}) * @returns */ declare const Fetch: (endpoint: string, method: string, body: Record | string | CollectionInterface | Account | FormData | any) => Promise; export default Fetch;