2023-12-18 03:43:46 +00:00
|
|
|
export type SearchResult = {
|
|
|
|
id: number;
|
|
|
|
timestamp: Date;
|
|
|
|
title: string;
|
|
|
|
description: string;
|
|
|
|
slug: string;
|
2023-12-24 16:43:41 +00:00
|
|
|
cid: string;
|
2023-12-18 03:43:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export type SelectOptions = {
|
|
|
|
value: string;
|
|
|
|
label: string;
|
|
|
|
};
|
2023-12-22 09:11:03 +00:00
|
|
|
|
|
|
|
export type SiteList = {
|
|
|
|
[domain: string]: {
|
2023-12-25 02:09:25 +00:00
|
|
|
pubkey: string;
|
2023-12-22 09:11:03 +00:00
|
|
|
name: string;
|
2023-12-24 13:16:23 +00:00
|
|
|
rss: string;
|
2023-12-22 09:11:03 +00:00
|
|
|
};
|
|
|
|
};
|