@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
28 lines (25 loc) • 753 B
TypeScript
import ICanvasBaseMemory from '../canvas/ICanvasBaseMemory.js';
import ITickersSteps from '../ITickersSteps.js';
import { TickerHistoryForExport } from '../TickerHistory.js';
import 'pixi.js';
import '../../TickerBase-3rLpDpmb.js';
import '../../types/StorageElementType.js';
import '../../types/TickerIdType.js';
import '../../types/PauseType.js';
import '../../types/RepeatType.js';
/**
* Interface exported canvas
*/
interface ExportedCanvas {
currentTickers: {
[id: string]: TickerHistoryForExport<any>;
};
currentTickersSteps: {
[tag: string]: ITickersSteps;
};
currentElements: {
[tag: string]: ICanvasBaseMemory;
};
childrenTagsOrder: string[];
}
export type { ExportedCanvas as default };