Files
jinshen-website/app/models/views/SearchItemView.ts
R2m1liA f62c4a3987 feat: 将搜索页面由Strapi迁移至Direcuts
- 路由页面相关源码修改
- 类型标注与组合式API
- 相关工具函数
2025-10-24 16:18:26 +08:00

14 lines
243 B
TypeScript

export interface SearchItemView {
/** 唯一标识符 **/
id: number;
/** 条目类型 **/
type: 'product' | 'solution' | 'question' | 'document';
/** 条目标题 **/
title: string;
/** 条目摘要 **/
summary?: string;
}