xxxxxxxxxx
import customProtocolCheck from "custom-protocol-check";
customProtocolCheck(
"mycustomprotocol://params",
() => {
console.log("Custom protocol not found.");
},
() => {
console.log("Custom protocol found and opened the file successfully.");
}, 5000
);