10 lines
146 B
TypeScript
10 lines
146 B
TypeScript
import { Syncable } from './sync';
|
|
|
|
interface Store {
|
|
put(string, Syncable, boolean?)
|
|
get(string):Syncable
|
|
delete(string)
|
|
}
|
|
|
|
export { Store };
|