fix: add missing types

This commit is contained in:
Derrick Hammer 2023-12-17 22:43:46 -05:00
parent e18c76ca8b
commit bb8fd35b49
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 12 additions and 0 deletions

12
app/types.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
export type SearchResult = {
id: number;
timestamp: Date;
title: string;
description: string;
slug: string;
};
export type SelectOptions = {
value: string;
label: string;
};