Files
lixiyu-net/types/search-result.ts

6 lines
93 B
TypeScript
Raw Normal View History

2024-01-06 11:47:18 +08:00
export type TSearchResultItem = {
id: string;
title: string;
tags: string[] | null;
};