mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2026-04-02 06:45:08 +08:00
28
src/types/App/HyperLink.d.ts
vendored
Normal file
28
src/types/App/HyperLink.d.ts
vendored
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user