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;
|
|
|
|
};
|
2023-12-22 09:11:03 +00:00
|
|
|
|
|
|
|
export type SiteList = {
|
|
|
|
[domain: string]: {
|
|
|
|
name: string;
|
2023-12-24 11:25:32 +00:00
|
|
|
sitemap: string;
|
2023-12-22 09:11:03 +00:00
|
|
|
};
|
|
|
|
};
|