@did-connect/handler
Version:
Abstract handler for did-connect relay server
8 lines (7 loc) • 313 B
TypeScript
import type { TWalletInfo } from '@did-connect/types';
declare const getStepChallenge: () => string;
declare const parseWalletUA: (userAgent: string) => TWalletInfo;
declare const formatDisplay: (display: string | {
[key: string]: any;
}) => string;
export { getStepChallenge, parseWalletUA, formatDisplay };