@drincs/pixi-vn 0.5.6 → 0.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants.d.mts +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/constants.js.map +1 -1
- package/dist/constants.mjs +1 -1
- package/dist/constants.mjs.map +1 -1
- package/dist/functions/SavesUtility.js +1 -1
- package/dist/functions/SavesUtility.js.map +1 -1
- package/dist/functions/SavesUtility.mjs +1 -1
- package/dist/functions/SavesUtility.mjs.map +1 -1
- package/dist/functions/index.js +1 -1
- package/dist/functions/index.js.map +1 -1
- package/dist/functions/index.mjs +1 -1
- package/dist/functions/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types/ChoiceMenuOptionsType.d.mts +1 -1
- package/dist/types/ChoiceMenuOptionsType.d.ts +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -12,6 +12,6 @@ import './StorageElementType.mjs';
|
|
|
12
12
|
* Munu is a type that contains a list of Label that a player can choose from.
|
|
13
13
|
* For Ren'py this is the equivalent of a menu.
|
|
14
14
|
*/
|
|
15
|
-
type ChoiceMenuOptionsType = (ChoiceMenuOption<
|
|
15
|
+
type ChoiceMenuOptionsType<T extends {} = {}> = (ChoiceMenuOption<T> | ChoiceMenuOptionClose)[];
|
|
16
16
|
|
|
17
17
|
export type { ChoiceMenuOptionsType };
|
|
@@ -12,6 +12,6 @@ import './StorageElementType.js';
|
|
|
12
12
|
* Munu is a type that contains a list of Label that a player can choose from.
|
|
13
13
|
* For Ren'py this is the equivalent of a menu.
|
|
14
14
|
*/
|
|
15
|
-
type ChoiceMenuOptionsType = (ChoiceMenuOption<
|
|
15
|
+
type ChoiceMenuOptionsType<T extends {} = {}> = (ChoiceMenuOption<T> | ChoiceMenuOptionClose)[];
|
|
16
16
|
|
|
17
17
|
export type { ChoiceMenuOptionsType };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -4,7 +4,7 @@ export { Close, CloseType } from './CloseType.mjs';
|
|
|
4
4
|
export { default as LabelRunModeType } from './LabelRunModeType.mjs';
|
|
5
5
|
export { Pause, PauseType, PauseValueType } from './PauseType.mjs';
|
|
6
6
|
export { Repeat, RepeatType } from './RepeatType.mjs';
|
|
7
|
-
export { StepLabelType } from './StepLabelType.mjs';
|
|
7
|
+
export { StepLabelPropsType, StepLabelResultType, StepLabelType } from './StepLabelType.mjs';
|
|
8
8
|
export { StorageElementType, StorageObjectType } from './StorageElementType.mjs';
|
|
9
9
|
import '../classes/ChoiceMenuOption.mjs';
|
|
10
10
|
import '../classes/Label.mjs';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export { Close, CloseType } from './CloseType.js';
|
|
|
4
4
|
export { default as LabelRunModeType } from './LabelRunModeType.js';
|
|
5
5
|
export { Pause, PauseType, PauseValueType } from './PauseType.js';
|
|
6
6
|
export { Repeat, RepeatType } from './RepeatType.js';
|
|
7
|
-
export { StepLabelType } from './StepLabelType.js';
|
|
7
|
+
export { StepLabelPropsType, StepLabelResultType, StepLabelType } from './StepLabelType.js';
|
|
8
8
|
export { StorageElementType, StorageObjectType } from './StorageElementType.js';
|
|
9
9
|
import '../classes/ChoiceMenuOption.js';
|
|
10
10
|
import '../classes/Label.js';
|
package/package.json
CHANGED