Interface Output<T, M>

interface Output<T, M = unknown> {
    data: null | T;
    meta: null | M;
}

Type Parameters

  • T
  • M = unknown

Properties

Properties

data: null | T

The value stored along the key. It will be null if the key was not found.

meta: null | M

The metadata stored along the key.