Interface ReturnTypeForValuesFromRecord<K, V>

Interface for the return type of the extractKeysAndValuesFromRecord function.

interface ReturnTypeForValuesFromRecord<K, V> {
    keys: K[];
    values: V[];
}

Type Parameters

  • K extends string

    Type of the keys in the record.

  • V

    Type of the values in the record.

Properties

Properties

keys: K[]
values: V[]

Generated using TypeDoc