7 lines
134 B
TypeScript
7 lines
134 B
TypeScript
|
export type TalkNPCs = Record<string, TalkNPC>
|
||
|
export interface TalkNPC {
|
||
|
icon?: string
|
||
|
name: string
|
||
|
identifier: string
|
||
|
}
|