LasTres/js-src/talk-npc.ts

7 lines
134 B
TypeScript
Raw Normal View History

2023-07-10 00:04:30 +02:00
export type TalkNPCs = Record<string, TalkNPC>
export interface TalkNPC {
icon?: string
name: string
identifier: string
}