fix: add missing types
This commit is contained in:
parent
e18c76ca8b
commit
bb8fd35b49
|
@ -0,0 +1,12 @@
|
||||||
|
export type SearchResult = {
|
||||||
|
id: number;
|
||||||
|
timestamp: Date;
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
slug: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type SelectOptions = {
|
||||||
|
value: string;
|
||||||
|
label: string;
|
||||||
|
};
|
Loading…
Reference in New Issue