dev3-sdk
Version:
SDK for interacting with the 0xDev3 platform.
12 lines (11 loc) • 448 B
TypeScript
import { WalletAuthorizationRequest, RequestStatus } from '../types';
import { User } from '../identity/User';
export declare class WalletAuthorizationAction {
private readonly authorizationRequest;
constructor(authorizationRequest: WalletAuthorizationRequest);
get actionUrl(): string;
get status(): RequestStatus;
get wallet(): string | undefined;
present(): Promise<User | undefined>;
awaitResult(): Promise<User>;
}