web3.news/app/types.d.ts

13 lines
189 B
TypeScript
Raw Normal View History

2023-12-18 03:43:46 +00:00
export type SearchResult = {
id: number;
timestamp: Date;
title: string;
description: string;
slug: string;
};
export type SelectOptions = {
value: string;
label: string;
};