After initialization, you can use the getStoreLink function:
Copy
// Initialize the SDK firstwindow.LinkrunnerSDK.init({ token: "YOUR_PROJECT_TOKEN",});// Get store linkasync function handleGetStoreLink() { try { const storeLink = await LinkrunnerSDK.getStoreLink(); console.log("Store link:", storeLink); // Use the store link as needed } catch (error) { console.error("Error getting store link:", error); }}// Call the function when neededhandleGetStoreLink();