blob: 4177fb14d562eeeb3979dc2e4ff4c7dbbbd2ddd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
export interface SiteConfig {
author: string;
date: {
locale: string | string[] | undefined;
options: Intl.DateTimeFormatOptions;
};
description: string;
lang: string;
ogLocale: string;
title: string;
url: string;
}
export interface PaginationLink {
srLabel?: string;
text?: string;
url: string;
}
export interface SiteMeta {
articleDate?: string | undefined;
description?: string;
ogImage?: string | undefined;
title: string;
lang?: string | undefined;
}
export type AdmonitionType = "tip" | "note" | "important" | "caution" | "warning";
|