6 lines
93 B
TypeScript
6 lines
93 B
TypeScript
|
|
export type TSearchResultItem = {
|
||
|
|
id: string;
|
||
|
|
title: string;
|
||
|
|
tags: string[] | null;
|
||
|
|
};
|