@reown/appkit-scaffold-ui
Version:
The full stack toolkit to build onchain app UX.
15 lines (14 loc) • 369 B
TypeScript
import type { Connection } from '@reown/appkit-common';
export declare const ConnectionUtil: {
getAuthData(connection: Connection): {
isAuth: boolean;
icon: undefined;
iconSize: undefined;
name: undefined;
} | {
isAuth: boolean;
icon: string;
iconSize: string;
name: string | undefined;
};
};