Skip to content

IDictionary

Qamsari edited this page Jul 25, 2021 · 1 revision

Generic type for represent dictionary of type TValue. Type of key always is string.

export default interface IDictionary<TValue> {
  [Key: string]: TValue;
}

Clone this wiki locally