From bb8fd35b49858571ccf43b247c6c55a95bbcb617 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 17 Dec 2023 22:43:46 -0500 Subject: [PATCH] fix: add missing types --- app/types.d.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app/types.d.ts diff --git a/app/types.d.ts b/app/types.d.ts new file mode 100644 index 0000000..5067351 --- /dev/null +++ b/app/types.d.ts @@ -0,0 +1,12 @@ +export type SearchResult = { + id: number; + timestamp: Date; + title: string; + description: string; + slug: string; +}; + +export type SelectOptions = { + value: string; + label: string; +};