Files
lixiyu-net/types/search-result.ts
2024-08-12 10:57:33 +08:00

7 lines
119 B
TypeScript

export type TSearchResultItem = {
id: string;
title: string;
summary: string | null;
tags: string[] | null;
};