UNPKG

@drincs/pixi-vn-ink

Version:

Pixi'VN gives you the ability to write your own narrative using Ink

14 lines (11 loc) 322 B
import { StandardDivert } from './Divert.js'; import TextType from './TextType.js'; type ListItem = StandardDivert | "pop" | TextType | null; type ContainerTypeF = { "#f": number; [key: string]: ListItem[] | number; }; type ContainerTypeN = { "#n": string; }; export type { ContainerTypeF, ContainerTypeN };