docs(deeplink): add file header documentation

This commit is contained in:
Elysia
2026-01-18 00:46:57 +08:00
parent c7b3257a2c
commit 22435a5e1b

View File

@@ -1,3 +1,7 @@
/**
* Deep link handler for Electron app.
* Author: juxnpxblo@github
*/
import { app } from "electron";
type Query = Record<string, string>;
export type Listener = (query: Query) => any;