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 };
