mirror of
https://github.com/one-among-us/data.git
synced 2024-11-10 13:24:50 +08:00
23 lines
391 B
TypeScript
23 lines
391 B
TypeScript
export interface HData {
|
|
commentOnly: string[];
|
|
exclude: string[];
|
|
notShowOnHome: string[];
|
|
actualHide: string[];
|
|
trigger: string[];
|
|
}
|
|
|
|
export interface PeopleMeta {
|
|
id: string;
|
|
name: string;
|
|
profileUrl: string;
|
|
path: string;
|
|
sortKey: string;
|
|
}
|
|
|
|
export interface BannerData {
|
|
type: string;
|
|
icon: string;
|
|
title: string;
|
|
text: string;
|
|
}
|