UNPKG

genshin-db

Version:

Genshin Impact v5.5 JSON data. Search and get results in all in-game languages! Sources from the fandom wiki and GenshinData repo.

31 lines (26 loc) 591 B
declare module "genshin-db" { export interface Voiceover { id: number; name: string; friendLines: Voiceline[]; actionLines: Voiceline[]; version: { [voicelineId: number | string]: string }; } export interface Voiceline { voicelineId: number; title: string; voicelineType: string; description: string; voicefile: string; hasGenderedVoicefile?: boolean; voicefile_male?: string; hasUnlockConditions?: boolean; unlockConditions: { unlockText: string; conditionType: string; // enum paramList: number[]; }[]; } }