@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
15 lines (12 loc) • 412 B
text/typescript
import LabelJsonType from '../types/LabelJsonType.mjs';
import '../types/StepLabelJsonType.mjs';
import '../types/LabelIdType.mjs';
import '../types/StorageElementType.mjs';
import '../types/LabelRunModeType.mjs';
/**
* PixiVNJson It can be defined as a programming language to write a narrative written in json.
*/
interface PixiVNJson {
labels?: LabelJsonType;
}
export type { PixiVNJson as default };