7 lines
119 B
TypeScript
7 lines
119 B
TypeScript
export type TSearchResultItem = {
|
|
id: string;
|
|
title: string;
|
|
summary: string | null;
|
|
tags: string[] | null;
|
|
};
|