mirror of
https://github.com/KazooTTT/kazoottt-blog.git
synced 2025-06-22 02:01:32 +08:00
Built resume template
This commit is contained in:
24
src/types.ts
Normal file
24
src/types.ts
Normal file
@ -0,0 +1,24 @@
|
||||
export type SiteConfig = {
|
||||
author: string
|
||||
title: string
|
||||
description: string
|
||||
lang: string
|
||||
ogLocale: string
|
||||
date: {
|
||||
locale: string | string[] | undefined
|
||||
options: Intl.DateTimeFormatOptions
|
||||
}
|
||||
}
|
||||
|
||||
export type PaginationLink = {
|
||||
url: string
|
||||
text?: string
|
||||
srLabel?: string
|
||||
}
|
||||
|
||||
export type SiteMeta = {
|
||||
title: string
|
||||
description?: string
|
||||
ogImage?: string | undefined
|
||||
articleDate?: string | undefined
|
||||
}
|
Reference in New Issue
Block a user