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