one-among-us-data/scripts/data.ts

24 lines
423 B
TypeScript
Raw Permalink Normal View History

2024-05-18 18:19:23 +08:00
export interface HData {
commentOnly: string[];
exclude: string[];
notShowOnHome: string[];
actualHide: string[];
trigger: string[];
switch: [string, string][];
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;
}