git » sdk » compiled » tree

[compiled] / snikket / persistence / KeyValueStore.hx

1
2
3
4
5
6
package snikket.persistence;

interface KeyValueStore {
	public function get(k: String, callback: (Null<String>)->Void): Void;
	public function set(k: String, v: Null<String>, callback: ()->Void): Void;
}