Files
blog/src/types/Friend.ts
2025-07-16 16:35:28 +08:00

9 lines
128 B
TypeScript

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