@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
23 lines (20 loc) • 559 B
text/typescript
import { CloseType } from './CloseType.mjs';
import LabelRunModeType from './LabelRunModeType.mjs';
/**
* 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;
};
export type { HistoryChoiceMenuOption as default };