@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
15 lines (12 loc) • 378 B
TypeScript
import { TextOptions } from 'pixi.js';
import { EventIdType } from '../../../types/EventIdType.js';
import CanvasBaseItemMemory from './CanvasBaseItemMemory.js';
/**
* Interface for the canvas text memory
*/
interface TextMemory extends TextOptions, CanvasBaseItemMemory {
onEvents: {
[name: string]: EventIdType;
};
}
export type { TextMemory as default };