@drincs/pixi-vn-ink
Version:
Pixi'VN gives you the ability to write your own narrative using Ink
14 lines (11 loc) • 324 B
text/typescript
import { StandardDivert } from './Divert.cjs';
import TextType from './TextType.cjs';
type ListItem = StandardDivert | "pop" | TextType | null;
type ContainerTypeF = {
"#f": number;
[key: string]: ListItem[] | number;
};
type ContainerTypeN = {
"#n": string;
};
export type { ContainerTypeF, ContainerTypeN };