Interface PropertyGet<TKey, TValue>

Getter of an indexed property.

interface PropertyGet<TKey, TValue> {
    get(key: TKey | JsType<TKey>): null | JsType<TValue>;
}

Type Parameters

  • TKey

    The type of the property key.

  • TValue

    The type of the property value.

Methods

Methods