UNPKG

@drincs/pixi-vn

Version:

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

15 lines (12 loc) 396 B
import { TextOptions } from 'pixi.js'; import { EventIdType } from '../../types/EventIdType.mjs'; import ICanvasBaseMemory from './ICanvasBaseMemory.mjs'; /** * Interface for the canvas text memory */ interface ICanvasTextMemory extends TextOptions, ICanvasBaseMemory { onEvents: { [name: CanvasEventNamesType]: EventIdType; }; } export type { ICanvasTextMemory as default };