UNPKG

@hellocoop/helper-browser

Version:

Hellō helper functions for the browser

9 lines (8 loc) 270 B
export type FetchConfig = { code: string; code_verifier: string; client_id: string; redirect_uri: string; wallet?: string; }; export declare function fetchToken({ code, code_verifier, client_id, redirect_uri, wallet }: FetchConfig): Promise<string>;