@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
23 lines (20 loc) • 557 B
TypeScript
import { CloseType } from './CloseType.js';
import LabelRunModeType from './LabelRunModeType.js';
/**
* 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 };