cic-internal-integration/apps/cic-meta/src/store.ts

10 lines
146 B
TypeScript

import { Syncable } from './sync';
interface Store {
put(string, Syncable, boolean?)
get(string):Syncable
delete(string)
}
export { Store };