Files
spark-store/electron/main/handle-url-scheme.ts
Elysia 50fb1a0065 feat(install): added basis install process
Now it is able to install apps from the render process and properly display logs on the app detial page.
2026-01-25 22:30:39 +08:00

5 lines
163 B
TypeScript

import { deepLink } from './deeplink';
deepLink.on("event", (query) => {
console.log(`Deep link: event "event" fired with query: ${JSON.stringify(query)}`);
});