From 22435a5e1b7f47972aad0d3588b0f0330982afff Mon Sep 17 00:00:00 2001 From: Elysia Date: Sun, 18 Jan 2026 00:46:57 +0800 Subject: [PATCH] docs(deeplink): add file header documentation --- electron/main/deeplink.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/electron/main/deeplink.ts b/electron/main/deeplink.ts index dbf57746..e3b36e95 100644 --- a/electron/main/deeplink.ts +++ b/electron/main/deeplink.ts @@ -1,3 +1,7 @@ +/** + * Deep link handler for Electron app. + * Author: juxnpxblo@github + */ import { app } from "electron"; type Query = Record; export type Listener = (query: Query) => any;