mirror of
https://github.com/KazooTTT/kazoottt-blog.git
synced 2025-06-21 09:41:30 +08:00
26 lines
426 B
TypeScript
26 lines
426 B
TypeScript
export type SiteConfig = {
|
|
author: string
|
|
title: string
|
|
description: string
|
|
lang: string
|
|
ogLocale: string
|
|
date: {
|
|
locale: string | string[] | undefined
|
|
options: Intl.DateTimeFormatOptions
|
|
}
|
|
site: string
|
|
}
|
|
|
|
export type PaginationLink = {
|
|
url: string
|
|
text?: string
|
|
srLabel?: string
|
|
}
|
|
|
|
export type SiteMeta = {
|
|
title: string
|
|
description?: string
|
|
ogImage?: string | undefined
|
|
articleDate?: string | undefined
|
|
}
|