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