@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
19 lines (16 loc) • 436 B
text/typescript
import { StorageElementType } from './StorageElementType.cjs';
type DialogueType = {
/**
* The text of the dialogue.
*/
text: string;
/**
* The id of the character that is speaking.
*/
character?: string;
/**
* Other parameters that can be stored in the dialogue.
*/
oltherParams?: Record<string | number | symbol, StorageElementType>;
};
export type { DialogueType as default };