UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

9 lines (8 loc) 252 B
import { Store } from 'alinea/backend/Store'; export interface PersistentStore { store: Store; flush(): Promise<void>; clone(): Store; clear(): Promise<void>; } export declare function createPersistentStore(): Promise<PersistentStore>;