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