@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
15 lines (12 loc) • 353 B
text/typescript
import { StorageElementType } from '../../types/StorageElementType.cjs';
interface CacheableStoreItem {
key: string;
value: StorageElementType;
}
/**
* Interface exported storage data
*/
type ExportedStorage = CacheableStoreItem[] | {
[key: string]: StorageElementType;
};
export type { CacheableStoreItem, ExportedStorage as default };