UNPKG

@dappykit/sdk

Version:

Web3 SDK for DApps

11 lines (10 loc) 286 B
export interface DappyAuthMockResponse { } export interface DappyAuthMock { /** * Opens the url on the default browser. Not WebView. * @param url url to open */ open: (url: string) => Promise<void>; } export declare function createDappyAuthMock(): DappyAuthMock;