Initial project

This commit is contained in:
Timi
2025-07-16 16:35:28 +08:00
parent 1e8213575b
commit 1c1f2f6594
36 changed files with 11610 additions and 129 deletions

8
src/types/Friend.ts Normal file
View File

@ -0,0 +1,8 @@
import { Model } from "timi-web";
/** 友链 */
export type Friend = {
icon?: string;
name: string;
link: string;
} & Model