UNPKG

@drincs/pixi-vn

Version:

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

17 lines (14 loc) 684 B
import PixiVNJson from '../interface/PixiVNJson.mjs'; import '../types/LabelJsonType.mjs'; import '../types/StepLabelJsonType.mjs'; import '../types/LabelIdType.mjs'; import '../types/StorageElementType.mjs'; import '../types/LabelRunModeType.mjs'; /** * Import a Pixi'VN JSON to the system. * This feature was created to give other developers the ability to create tools that can generate Pixi'VN labels or that generate Pixi'VN after extracting information from a programming language designed for writing narratives. * @param data The Pixi'VN JSON to be imported * @returns */ declare function importPixiVNJson(data: PixiVNJson | string): void; export { importPixiVNJson };