13 lines
450 B
TypeScript
13 lines
450 B
TypeScript
import { IMobileRegistryEntry, IQRCodeModalOptions } from "@walletconnect/types";
|
|
import { TextMap } from "../types";
|
|
interface LinkDisplayProps {
|
|
mobile: boolean;
|
|
text: TextMap;
|
|
uri: string;
|
|
qrcodeModalOptions?: IQRCodeModalOptions;
|
|
links: IMobileRegistryEntry[];
|
|
errorMessage: string;
|
|
}
|
|
declare function LinkDisplay(props: LinkDisplayProps): JSX.Element;
|
|
export default LinkDisplay;
|
|
//# sourceMappingURL=LinkDisplay.d.ts.map
|