Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 412 Bytes

eth-connect.fetchfunction.md

File metadata and controls

16 lines (12 loc) · 412 Bytes

Home > eth-connect > FetchFunction

FetchFunction type

Signature:

export type FetchFunction = (url: string, params: {
    body?: any;
    method?: string;
    mode?: string;
    headers?: any;
}) => Promise<any>;