UNPKG

@drincs/pixi-vn

Version:

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

15 lines (12 loc) 352 B
import { StorageElementType } from '../../types/StorageElementType.js'; interface CacheableStoreItem { key: string; value: StorageElementType; } /** * Interface exported storage data */ type ExportedStorage = CacheableStoreItem[] | { [key: string]: StorageElementType; }; export type { CacheableStoreItem, ExportedStorage as default };