LasTres/js-src/talk-npc.ts

7 lines
134 B
TypeScript

export type TalkNPCs = Record<string, TalkNPC>
export interface TalkNPC {
icon?: string
name: string
identifier: string
}