UNPKG

@drincs/pixi-vn

Version:

Pixi'VN is a npm package that provides various features for creating visual novels.

27 lines (24 loc) 624 B
import { CloseType } from './CloseType.cjs'; import LabelRunModeType from './LabelRunModeType.cjs'; /** * HistoryChoiceMenuOption is a type that contains the history information of a choice menu option. */ type HistoryChoiceMenuOption = { /** * Text to be displayed in the menu */ text: string; /** * Method used to open the label, or close the menu. */ type: CloseType | LabelRunModeType; /** * This choice is a response */ isResponse: boolean; /** * The choice is hidden */ hidden: boolean; }; export type { HistoryChoiceMenuOption as default };