@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
14 lines (11 loc) • 294 B
text/typescript
import StepLabelJsonType from './StepLabelJsonType.mjs';
import './LabelIdType.mjs';
import './StorageElementType.mjs';
import './LabelRunModeType.mjs';
/**
* Label JSON type
*/
type LabelJsonType = {
[labelId: string]: StepLabelJsonType[];
};
export type { LabelJsonType as default };