2024-05-18 18:19:23 +08:00
|
|
|
export interface HData {
|
|
|
|
commentOnly: string[];
|
|
|
|
exclude: string[];
|
|
|
|
notShowOnHome: string[];
|
|
|
|
actualHide: string[];
|
|
|
|
trigger: string[];
|
2024-05-19 17:37:35 +08:00
|
|
|
switch: [string, string][];
|
2025-02-08 10:10:44 +08:00
|
|
|
skipAges: string[];
|
2025-02-10 07:18:17 +08:00
|
|
|
probilities: any;
|
2024-05-18 18:19:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface PeopleMeta {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
profileUrl: string;
|
|
|
|
path: string;
|
|
|
|
sortKey: string;
|
|
|
|
}
|
|
|
|
|
2024-05-17 20:28:56 +08:00
|
|
|
export interface BannerData {
|
2024-05-18 18:19:23 +08:00
|
|
|
type: string;
|
|
|
|
icon: string;
|
|
|
|
title: string;
|
|
|
|
text: string;
|
|
|
|
}
|