处理 t-link

close #156
This commit is contained in:
BTMuli
2026-01-16 23:27:08 +08:00
parent a2f0a532a8
commit 422f6231c8
9 changed files with 709 additions and 7 deletions

28
src/types/App/HyperLink.d.ts vendored Normal file
View File

@@ -0,0 +1,28 @@
/**
* HyperLink
* @since Beta v0.9.2
*/
declare namespace TGApp.App.HyperLink {
/**
* 文件类型
* @since Beta v0.9.2
*/
type AppHyperLink = Array<HyperLinkItem>;
/**
* HyperLinkItem
* @since Beta v0.9.2
*/
type HyperLinkItem = {
/** id */
id: number;
/** name */
name: string;
/**
* 描述
* @remarks htmlText
*/
desc: string;
};
}