UNPKG

@drincs/pixi-vn

Version:

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

21 lines (19 loc) 606 B
/** * StepLabelResultType is the return type of the StepLabel function. * It can be useful for returning to the information calling function to perform other operations that cannot be performed within the StepLabel. * You can override this interface to add your own return types. * @example * ```typescript * // pixi-vn.types.ts * declare module '@drincs/pixi-vn/dist/override' { * interface StepLabelResult { * newRoute?: string, * [key: string]: any * } * } * ``` */ interface StepLabelResult { [key: string]: any; } export type { StepLabelResult as default };