Skip to content

Instantly share code, notes, and snippets.

@alxhub
Created June 23, 2015 18:10
Show Gist options
  • Save alxhub/f94a10e891358d27cacd to your computer and use it in GitHub Desktop.
Save alxhub/f94a10e891358d27cacd to your computer and use it in GitHub Desktop.
/**
* A very minimal interface for a key-value store, designed as an abstraction
* layer over IndexedDB.
*/
interface Idb {
get(key: string): Object;
put(key: string, value: Object): boolean;
remove(key: string): boolean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment