UNPKG

@drincs/pixi-vn

Version:

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

20 lines (17 loc) 517 B
import { S as StorageElementType } from './StorageElementType-DTGcnkzF.cjs'; interface StorageGameStateItem<T = StorageElementType> { key: string; value: T; } /** * Interface exported storage data */ type StorageGameState = { base: StorageGameStateItem[]; temp: StorageGameStateItem[]; tempDeadlines: StorageGameStateItem<number>[]; flags: string[]; } | StorageGameStateItem[] | { [key: string]: StorageElementType; }; export type { StorageGameState as S, StorageGameStateItem as a };