15 lines
450 B
QML
15 lines
450 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
// Stub for Controller QObject defined in src/app/modules/main/wallet_section/wallet_connect/controller.nim
|
|
Item {
|
|
id: root
|
|
|
|
signal proposeUserPair(string sessionProposalJson, string supportedNamespacesJson)
|
|
|
|
// function pairSessionProposal(/*string*/ sessionProposalJson)
|
|
required property var pairSessionProposal
|
|
|
|
required property string projectId
|
|
} |