Interface MemorizeCoreControls<V, K>

interface MemorizeCoreControls<V, K> {
    fn: ((arg: K) => V);
    memory: SimpleMap<K, V>;
}

Type Parameters

  • V
  • K

Properties

Properties

fn: ((arg: K) => V)
memory: SimpleMap<K, V>