13 lines
189 B
TypeScript
13 lines
189 B
TypeScript
|
export type SearchResult = {
|
||
|
id: number;
|
||
|
timestamp: Date;
|
||
|
title: string;
|
||
|
description: string;
|
||
|
slug: string;
|
||
|
};
|
||
|
|
||
|
export type SelectOptions = {
|
||
|
value: string;
|
||
|
label: string;
|
||
|
};
|